hi i write this matlap code but when i plot it i get an empty graph

1 次查看(过去 30 天)
vt=-7; w=0.47; L=0.025; m=1.22; c0=34.515e-9;k=(w*m*c0/(2*L));
for vg=0:10:40
Id=k*(vg-vt).^2
plot(vg,Id,'r');
hold on;
end

采纳的回答

Walter Roberson
Walter Roberson 2018-1-16
Change the 'r' to 'r*'
  2 个评论
shaker mahmood
shaker mahmood 2018-1-16
thank you for your help but why its only show a points while it has to be a curve
Walter Roberson
Walter Roberson 2018-1-16
You only ask it to plot one point at a time. MATLAB has no way of knowing that you want the points to be connected. If you want points to be connected in a plot then you need to give plot at least two points, the place to draw from and the place to draw to.
All of which is leading to the fact that you should not be plotting inside the loop. Instead you should be calculating the coordinates and storing them in a vector, and then you can plot the vector after the loop.

请先登录,再进行评论。

更多回答(1 个)

shaker mahmood
shaker mahmood 2018-1-16
thank you

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by