matlab对比图曲线,用于数据拟合,图像对比的MATLAB作图命令PLOTYY

本文介绍了MATLAB中plotyy函数的使用方法,通过示例展示如何在同一图表上绘制横坐标相同、纵坐标不同的两条曲线,便于数据对比。内容包括基本用法、线型设置以及图例和坐标轴标注的添加。
摘要由CSDN通过智能技术生成

MATLAB作图:plotyy使用方法。即:横坐标相同,纵坐标不同的两条曲线画在同一图上进行比对。

例1. 需要采用图形句柄,详细内容参考MATLAB帮助文件有关plotyy的例程

%%This example graphs two mathematical functions using plot as the

plotting function. The two y-axes

%%enable you to display both sets of data on one graph even though

relative values of the data are quite

%%different.

x = 0:0.01:20;

y1 = 200*exp(-0.05*x).*sin(x);

y2 = 0.8*exp(-0.5*x).*sin(10*x);

[AX,H1,H2] =

plotyy(x,y1,x,y2,'plot');

用[AX,H1,H2]=plotyy(x,y1,x,y2);命令。AX(1),AX(2)分别为左右Y轴的句柄

%%You can use the handles returned by plotyy to label the axes and

set the line styles used for plotting.

%%With the axes handles you can specify the YLabel properties of

the left- and right-side y-axis:

set(get(AX(1),'Ylabel'),'String','Slow Decay')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值