MATLAB Cheat Sheet
MATLAB Cheat Sheet
SCIENCE
PROGRAMMING
ACADEMY WITH MATLAB
MATLAB (MATrix LABoratory) is a high-performance language for technical computing.
It integrates computation, visualization, and programming in an easy-to-use environment
where problems and solutions are expressed in familiar mathematical notation.
Small variables like x and y will be either row or column vectors and A will always be a matrix.
zeros(5, 5) Create a 5 × 5 matrix of zeros (Pre-Allocation) x+y Elementwise addition of two vectors x and y