Info

This question is closed. Reopen it to edit or answer.

My graph will not display

1 view (last 30 days)
Skye Cameron
Skye Cameron on 3 Apr 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
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])

Answers (1)

Ameer Hamza
Ameer Hamza on 3 Apr 2020
Edited: Ameer Hamza on 3 Apr 2020
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!