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!

