MATLAB CODE FOR PLOTTING WON'T DISPLAY A LINE
显示 更早的评论
I'M trying to plot a line/graph for y=(R (H.* x.^2.* Beta.^2 - Beta.*x + x .*Beta.* (2 - H .*Beta.*x)))/(K (1 +
H .*x .*Beta).^2).
here are my codes
x=[0:0.002:2];
R=0.12;
betta=2.623;
H=0.2;
K=0.5;
y=(R.*(H.*x.^2.*betta.^2-betta.*x+x.*betta.*(2-H.*betta.*x)))/(K.*(1+H.*x.*betta)).^2;
plot(x,y,'b-')
grid on
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File 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!

