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