필터 지우기
필터 지우기

not getting a plot

조회 수: 1 (최근 30일)
Sourav singh
Sourav singh 2021년 3월 15일
답변: VBBV 2021년 4월 1일
MTOW= 242;
OEW=141.3119;
PAY=60;
SFC=0.29/3600;
g=9.8;
U=[0 5 10 15 20 25 30 35 40];
P=[32.91428 30.8628 26.5554 23.45806 22.92738 24.98139 29.61881 36.97433 47.2849];
U_by_P= U./P;
R=(U_by_P).*((MTOW-OEW-PAY)./(g.*SFC));
plot(U_by_P,PAY,'r')
  댓글 수: 5
Sourav singh
Sourav singh 2021년 3월 15일
when i am putting this..... plot(U_by_P,PAY*ones(1,length(U_by_P)),'r');
it shows error
Star Strider
Star Strider 2021년 3월 15일
Try this:
plot(U_by_P,PAY*ones(size(U_by_P)),'r')
That should work.

댓글을 달려면 로그인하십시오.

답변 (1개)

VBBV
VBBV 2021년 4월 1일
%f
plot(U_by_P,R,'r')
Try above. You might want plot of R and U_by_P

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by