Answers for "matlab plot"

2

matlab plot function

figure();
plot(xArray, yArray, '*');
Posted by: Guest on October-16-2021
0

matlab plot

x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y)
Posted by: Guest on May-01-2022

Browse Popular Code Answers by Language