Info

此问题已关闭。 请重新打开它进行编辑或回答。

My graph will not display

2 次查看(过去 30 天)
Skye Cameron
Skye Cameron 2020-4-3
关闭: MATLAB Answer Bot 2021-8-20
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
P1 = 1.513;
H = 4292;
y = 0:0.1:1;
X = ((P1/H).*y) ./ (1+(1 - (P1/H).*y));
plot (X,y)

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by