Throughout This Document X and y Will Be Either Row or Column Vectors and A Will Always Be A Matrix
Throughout This Document X and y Will Be Either Row or Column Vectors and A Will Always Be A Matrix
Throughout this document x and y will be either row or column vectors and A will always be a matrix.
k = 0; Plotting
while k < 7
k = k + 1;
end x = linspace(-3*pi, 3*pi, 1000);
y1 = sin(x);
y2 = cos(x);
end
-0.5
Functions
-1
function output = addNumbers(x, y)
output = x + y;
end
-1.5
-5 0 5
addNumbers(10, -5)
5 x