如何在 for 循环中使用 MATLAB 绘图函数
我有下面的 for 循环:
for Vsb = 0:1:5
Vtn = Vto+y*(sqrt(SurfPot + Vsb) + sqrt(SurfPot));
end
我想针对 Vsb
的所有值绘制 Vtn
与 Vsb
的关系。我试图使用绘图功能,但它似乎不起作用。
I have this for loop below:
for Vsb = 0:1:5
Vtn = Vto+y*(sqrt(SurfPot + Vsb) + sqrt(SurfPot));
end
I want to plot Vtn
vs Vsb
for all the values of Vsb
. I was trying to use the plot function but it does not seem to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Vtn 变量应该是一个包含 6 个元素的数组。
然后将 Vtn 绘制为 Vsb 的函数,如下所示
the Vtn variable should be an array with 6 elements.
then just plot the Vtn as a function of Vsb with the following