i want my graph to start from 0 after writing this code it starts from 1
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Saif Sayed
le 9 Sep 2019
Réponse apportée : madhan ravi
le 9 Sep 2019
clc
clear all
for x=1:1:51
y(x)=-0.0349*(exp(0.548*x*0.1))+8.549*(exp(-0.548*x*0.1))+0.119;
end
plot(y)
0 commentaires
Réponse acceptée
madhan ravi
le 9 Sep 2019
% No loops needed:
x=0:51;
y=-0.0349*(exp(0.548*x*0.1))+8.549*(exp(-0.548*x*0.1))+0.119;
plot(x,y)
"plot(Y) plots the columns of Y versus their index.
If Y is complex, plot(Y) is equivalent to plot(real(Y),imag(Y)).
In all other uses of plot, the imaginary part is ignored."
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!