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.
Mostrar comentarios más antiguos
for x=0.3:0.01:0.5
y=15e-9*exp(x/25e-3)-1;
plot(x,y)
hold on
end
Respuesta aceptada
Más respuestas (1)
José-Luis
el 18 de Ag. de 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 comentario
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!