My problem is, the display of my plot were dots. how will i able to display it with a curve line. the main code shoud be inside of the for loop.
Mostra commenti meno recenti
for x=0.3:0.01:0.5
y=15e-9*exp(x/25e-3)-1;
plot(x,y)
hold on
end
Risposta accettata
Più risposte (1)
José-Luis
il 18 Ago 2012
You are plotting point by point. You might want to try:
x=0.3:0.01:0.5;
y=15e-9*exp(x/25e-3)-1;
plot(x,y,'k-'); %black line
For more help:
help plot
1 Commento
Categorie
Scopri di più su Surface and Mesh Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!