plotting x vs y but not y vs x.
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nikhil
il 3 Gen 2014
Commentato: Youssef Khmou
il 4 Gen 2014
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
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 3 Gen 2014
Maybe because your values are very small, try this
plot(x,y*1e+152)
3 Commenti
Più risposte (1)
Youssef Khmou
il 3 Gen 2014
Modificato: Youssef Khmou
il 3 Gen 2014
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)
Vedere anche
Categorie
Scopri di più su Axis Labels in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!