Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
btbass said:I would like to plot 256 values from 0 to x that follow an exponential curve.
Could somebody please help.
x=[0:0.1:(256-1)]; %i used a step of 0.1 , u can change it
y=exp(x);
plot(x,y);
grid on;
x=9 ;
z=[0:0.1:x*(256-1)]; %i used a step of 0.1 , u can change it
y=exp(z);
plot(z,y);
grid on;