MATLAB Preliminaries
VERY easy manipulation of arrays
x = [ 1 2 3 ]; Define a row vector
a = [ 2 1 0]; Define another row vector
b = x + a
b =
[ 3 3 3 ]
y = [ 1; 2; 3; ] Define a column vector
What is x + y ?
Previous slide
Next slide
Back to first slide
View graphic version