Info
此问题已关闭。 请重新打开它进行编辑或回答。
question about how to plot a for loop in matlab
1 次查看(过去 30 天)
显示 更早的评论
hello Guys
I am trying to plot this
Lr=300e-6;
Cr=20e-9;
Re=8;
Qe=sqrt(Lr/Cr)/Re;
Ln=1;
for Fn=0.1:0.01:10;
Mg=abs((Ln*Fn*Fn)/(((Ln+1)*Fn*Fn-1)+((Fn^2-1)*Fn*Qe*Ln)*i))
hold on
end
plot (Fn,Mg)
hold on
But I dont any response in figure.
Can u please help me. Thanks a lot
0 个评论
回答(1 个)
infinity
2019-7-19
Hello,
Try to put plot inside the loop
for Fn=0.1:0.01:10;
Mg=abs((Ln*Fn*Fn)/(((Ln+1)*Fn*Fn-1)+((Fn^2-1)*Fn*Qe*Ln)*i))
plot (Fn,Mg)
hold on
end
0 个评论
此问题已关闭。
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!