My graph will not display

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])

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 4 月 3 日
編集済み: Ameer Hamza 2020 年 4 月 3 日

0 投票

P1 = 1.513;
H = 4292;
y = 0:0.1:1;
X = ((P1/H).*y) ./ (1+(1 - (P1/H).*y));
plot (X,y)

この質問は閉じられています。

質問済み:

2020 年 4 月 3 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by