Info
この質問は閉じられています。 編集または回答するには再度開いてください。
My graph will not display
1 回表示 (過去 30 日間)
古いコメントを表示
P1 = 1.513;
H = 4292;
y = 0:0.1:1
X = ((P1/H)*y) / (1+(1 - (P1/H)*y))
plot (X,y)
xlim([0 0.00001])
ylim([0 1.2])
0 件のコメント
回答 (1 件)
Ameer Hamza
2020 年 4 月 3 日
編集済み: Ameer Hamza
2020 年 4 月 3 日
You need to use element-wise operators. See this: https://www.mathworks.com/help/matlab/matlab_prog/array-vs-matrix-operations.html
P1 = 1.513;
H = 4292;
y = 0:0.1:1;
X = ((P1/H).*y) ./ (1+(1 - (P1/H).*y));
plot (X,y)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!