Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

My graph will not display

2 visualizzazioni (ultimi 30 giorni)
Skye Cameron
Skye Cameron il 3 Apr 2020
Chiuso: MATLAB Answer Bot il 20 Ago 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])

Risposte (1)

Ameer Hamza
Ameer Hamza il 3 Apr 2020
Modificato: Ameer Hamza il 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)

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by