|
经过修改,3楼的代码实现的功能如下:
figure1=figure('Units', 'Pixels', 'Position', [200 200 700 500],'color',[1,1,1]);
%axes1 = axes('Position',[0.08 0.73 0.38 0.1],'Parent',figure1);
axes1 = axes('Position',[0.08 0.73 0.2 0.25],'Parent',figure1);
axis(axes1,[0 1 0 1]);
xlabel(axes1,'t/s');
ylabel(axes1,'幅度');
box(axes1,'on');
hold(axes1,'all');
plot([0,1],[0,1]);
%axes2 = axes('Position',[0.58 0.73 0.38 0.1],'Parent',figure1);
axes2 = axes('Position',[0.58 0.73 0.2 0.25],'Parent',figure1);
axis(axes2,[0 1 0 1]);
xlabel(axes2,'t/s');
ylabel(axes2,'频率/Hz');
box(axes2,'on');
hold(axes2,'all');
plot([0,1],[0,1]);
%axes3 = axes('Position',[0.08 0.40 0.38 0.1],'Parent',figure1);
axes3 = axes('Position',[0.08 0.40 0.2 0.25],'Parent',figure1);
axis(axes3,[0 1 0 1]);
xlabel(axes3,'t/s');
ylabel(axes3,'幅度');
box(axes3,'on');
hold(axes3,'all');
plot([0,1],[0,1]);
%axes4 = axes('Position',[0.58 0.40 0.38 0.1],'Parent',figure1);
axes4 = axes('Position',[0.58 0.40 0.2 0.25],'Parent',figure1);
axis(axes4,[0 1 0 1]);
xlabel(axes4,'t/s');
ylabel(axes4,'频率/Hz');
box(axes4,'on');
hold(axes4,'all');
plot([0,1],[0,1]);
%axes5 = axes('Position',[0.08 0.07 0.38 0.1],'Parent',figure1);
axes5 = axes('Position',[0.08 0.07 0.2 0.25],'Parent',figure1);
axis(axes5,[0 1 0 1]);
xlabel(axes5,'t/s');
ylabel(axes5,'幅度');
box(axes5,'on');
hold(axes5,'all');
plot([0,1],[0,1]);
%axes6 = axes('Position',[0.58 0.07 0.38 0.1],'Parent',figure1);
axes6 = axes('Position',[0.58 0.07 0.2 0.25],'Parent',figure1);
axis(axes6,[0 1 0 1]);
xlabel(axes6,'t/s');
ylabel(axes6,'频率/Hz');
box(axes6,'on');
hold(axes6,'all');
plot([0,1],[0,1]);
[ 本帖最后由 ch_j1985 于 2008-5-27 17:07 编辑 ] |
-
红色的代码绘制的图
-
蓝色的代码绘制的图
评分
-
1
查看全部评分
-
|