필터 지우기
필터 지우기

plotting x vs y but not y vs x.

조회 수: 6 (최근 30일)
Nikhil
Nikhil 2014년 1월 3일
댓글: Youssef Khmou 2014년 1월 4일
Hello all,
I have two vectors XN and YN. Their values are mentioned in the excel file attached. I want to plot YN vs XN. when I enter following code: plot(XN,YN) I didn't get any result. But when I enter plot(YN,XN), matlab shows me correct plot.
Can you please help me to resolve this issue, why MATLAB is plotting x vs y but not y vs x?
Thank you in advance
Nikhil

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 1월 3일
Maybe because your values are very small, try this
plot(x,y*1e+152)
  댓글 수: 3
Nikhil
Nikhil 2014년 1월 3일
Hey,
Thank you for your answer. It works this way. But if MALTAB can plot(y,x) without multiplying by any factor, why can't it just plot(x,y)....?
Thanks again, Nikhil
Youssef  Khmou
Youssef Khmou 2014년 1월 4일
it worked without amplifying factor, this issue is not clear yet ...

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

추가 답변 (1개)

Youssef  Khmou
Youssef Khmou 2014년 1월 3일
편집: Youssef Khmou 2014년 1월 3일
Nikhil,
with the file you posted, it plots correctly y=f(x) which has a peak in the abscissa x=4.
G=xlsread('file.xlsx');
x=G(:,1)
y=G(:,2)
plot(x,y)
  댓글 수: 1
Nikhil
Nikhil 2014년 1월 3일
Hey,
I am still not getting this plot. I am getting figure for plot(y,x) but I am getting blank figure for plot(x,y). I think there might be issue with version of Matlab I am using. Any help in this regard would be appreciated.
Thanks,
Nikhil

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by