How to display graph with values on the left side and values on the right side

2 次查看(过去 30 天)
I need to display this kind of graph with values of wolves on the left side, and values of elks on the left side. Any help will be appreciated, sorry for my english.

采纳的回答

the cyclist
the cyclist 2016-6-15
编辑:the cyclist 2016-6-15
Use the yyaxis command or the older plotyy command. (The latter is not recommended anymore.)
  2 个评论
Dos
Dos 2016-6-15
编辑:Dos 2016-6-15
Thank you! I've another question, how can I plot with given points, for example I've all 15 points of wolves and elks. Is it possible to put them in array and get figure with one of this function? I still don't have the function of this graph, so I would like to show it with given points at least for the beginning
the cyclist
the cyclist 2016-6-15
编辑:the cyclist 2016-6-15

I don't understand what you are asking for here. Here is an example from the documentation. Maybe you can figure out how to plot your own data, using this example.

x = linspace(0,10);
y = sin(3*x);
yyaxis left
plot(x,y)
z = sin(3*x).*exp(0.5*x);
yyaxis right
plot(x,z)
ylim([-150 150])

请先登录,再进行评论。

更多回答(1 个)

Neel Shah
Neel Shah 2019-11-1
how do i write on both side of the graph
like on left and right side of the graph

类别

Help CenterFile Exchange 中查找有关 Directed Graphs 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by