由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
EE版 - 请教Matlab画图问题
相关主题
how to plot a circle in matlab?how to plot this figure in matlab?
问一个matlab画图的问题matlab里面的3D plot
A matlab question怎么在matlab里面画一条颜色逐渐变化的曲线
Re: Matlab Guru please helpHelp needed for plotting a graph
大家一般都用什么画图工具请wavelet的专家进来指教一下,谢谢
Re: matlab作图问题正在做图像处理的GUI.在图像A里加一条线,可以移动,每次移动更新图像B
how to plot z=1+0.25j on matlab?GUI里打开.fig文件用imagesc显示图像
Matlab里面怎么同时弄两个进程大家推荐一个ip camera吧
相关话题的讨论汇总
话题: matlab话题: plot话题: axis话题: 画图话题: gca
进入EE版参与讨论
1 (共1页)
z*******x
发帖数: 30
1
我想画两条曲线在同一个图上,但是两条曲线要用不同的scales and units,比如一条
要用速度从-5到5的,另一条要用质量从0到100,左边的y-axis来标速度,右边
的y-axis来表质量,在matlab上如何实现?谢谢!
z*******x
发帖数: 30
2
anybody can help me? Thanks!!
j***j
发帖数: 324
3
I also want this function before,but didnot find solutions。
finally,I manually scale two datas and manually add another axle on the
right side。

【在 z*******x 的大作中提到】
: 我想画两条曲线在同一个图上,但是两条曲线要用不同的scales and units,比如一条
: 要用速度从-5到5的,另一条要用质量从0到100,左边的y-axis来标速度,右边
: 的y-axis来表质量,在matlab上如何实现?谢谢!

f*****g
发帖数: 30
4
例子:
% plot (x,y1) and (x,y2) on the same graph
plot(x,y1);
axes; % generate a new axes system on the same figure
set(gca,'color','none');
% remove the default white background, so the first plot will be seen.
set(gca,'yaxis','right');
% move the y axis to the right side.
plot(x,y2);
接下来的修饰,应该都差不多了。
c*u
发帖数: 916
5
plotyy?

【在 z*******x 的大作中提到】
: 我想画两条曲线在同一个图上,但是两条曲线要用不同的scales and units,比如一条
: 要用速度从-5到5的,另一条要用质量从0到100,左边的y-axis来标速度,右边
: 的y-axis来表质量,在matlab上如何实现?谢谢!

e*******e
发帖数: 248
6
四楼的方法给你更多的控制。
五楼的可以直接用,简单点儿
1 (共1页)
进入EE版参与讨论
相关主题
大家推荐一个ip camera吧 大家一般都用什么画图工具
为什么cadence仿真的图直接贴到word里那么难看?Re: matlab作图问题
Marvell 电面的一些问题。how to plot z=1+0.25j on matlab?
is there unique real analytical solution to this set of eqMatlab里面怎么同时弄两个进程
how to plot a circle in matlab?how to plot this figure in matlab?
问一个matlab画图的问题matlab里面的3D plot
A matlab question怎么在matlab里面画一条颜色逐渐变化的曲线
Re: Matlab Guru please helpHelp needed for plotting a graph
相关话题的讨论汇总
话题: matlab话题: plot话题: axis话题: 画图话题: gca