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

Antworten (1)

Ameer Hamza
Ameer Hamza am 3 Apr. 2020
Bearbeitet: Ameer Hamza am 3 Apr. 2020

0 Stimmen

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

Diese Frage ist geschlossen.

Gefragt:

am 3 Apr. 2020

Geschlossen:

am 20 Aug. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by