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.
Show older comments
for x=0.3:0.01:0.5
y=15e-9*exp(x/25e-3)-1;
plot(x,y)
hold on
end
Accepted Answer
More Answers (1)
José-Luis
on 18 Aug 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 Comment
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!