I would like to get a graph similar to those in figure 1 in the attched file (not necessary the shaded area)
plot graph with values of y axis on the begining and the end
3 views (last 30 days)
Show older comments
tilfani oussama
on 31 Jul 2018
Edited: Naveed Ahmed
on 31 Jul 2018
I have three array vectors, beta, betal and betau, i would like to plot them on the same grpah. The x axis is scale ranging from 10 to 500, i did this to plot them
plot(scale,beta,scale,betau,scale,betal) ;
axis([10 500 -1 2])
My aim is to get values of y (beta values ranging from -1 to 2) on the right and on the left of my graph.
0 Comments
Accepted Answer
tilfani oussama
on 31 Jul 2018
1 Comment
Naveed Ahmed
on 31 Jul 2018
Edited: Naveed Ahmed
on 31 Jul 2018
Just add this line after the axis([10 500 -1 2])
axes('xlim', [10 500], 'ylim', [-1 2], 'color', 'none', 'YAxisLocation', 'right', 'XAxisLocation', 'top')
Is this what you want?
More Answers (2)
Naveed Ahmed
on 31 Jul 2018
Hi,
If I understand by your last statement, do you want to get the plot as shown in the image? If not, please draw by hand the way you want to display your data.
Thanks
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!