changing axis values into names
Ältere Kommentare anzeigen
Hi,
I have the following Problem:
I created a variable that is either 1 or -1, depending on other factors, which are irrelevant for the Problem itself. Now I would like to plot the results using this code:
myData(:,1)=[726792 726793 726794 726796 726799 726800 726801 726802 ];
myData(:,2)=[1 1 1 -1 -1 1 1 -1];
plot (myData(:,1),myData(:,2))
axis([min(myData(:,1)) max(myData(:,1)) -2 2])
datetick('x','mmmyyyy')
That is woking fine, however instead of having -1 and 1 on the yaxis, I would like to have exactly this plot but on the y axis at the Point where now a 1 is Standing, i would like to write "contango" and at -1, I would like to write "backwardation". Is this somehow possible?
Akzeptierte Antwort
Weitere Antworten (1)
Erenca
am 29 Dez. 2015
0 Stimmen
If you wish to do it using the graphical interface, follow these steps (i am using R2015b)
- Plot the figure.
- On the figure window choose 'Edit' dropdown menu.
- On the edit dropdown menu click on 'Axes properties...'
- On the newly opened window you will see 'Ticks...' button on lower right hand side, click on it
- Now you can replace the axis variables with whatever you want, be it number or string
best- erenca
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!