MATLAB Arrays
MATLAB Arrays
MATLAB
Todays Lecture
M-Files
Array Manipulation
Complex Numbers
M-files
M-files
M-files
Array Manipulation
Array Manipulation
Array Indexing
Array Construction
Array Orientation
Standard Arrays
Array Manipulation:
Construction
A ten column vector can be generated by colon
notation.
x = (1:10);
Array Manipulation:
Construction
Arrays can be constructed by concatenating two
arrays.
If a= [1:3];
b= [ 3:5];
x = [ a b]
Complex Numbers
Complex Numbers
Complex Numbers