举例,有一组数据,只有当 x= 1,2,3, 500, 501, 502, 503 时,才有数据 y= 3, 9, 4, 10, 21, 23, 14,其他时刻数据全为零。
1)画图 stem(x,y),此时画的图,横坐标中间空出好几百个点都没有数据;
2)xx=[1:3,497:503 ];
x1=1:length(xx);
y(4:499)=NaN;
yy=y(xx);
stem(x1,yy)
再画图时,中间大段的空白部分被缩短了。
================================
完整代码如下,LZ可以运行一下检验是否符合你的要求:
x=[ 1:510];
y=zeros(1,510);
y(1:3)=[3,9,4];
y(500:503)=[10,21,23,14];
figure(121)
stem(x,y)
xx=[1:3,497:503 ];
x1=1:length(xx);
y(4:499)=NaN;
yy=y(xx);
figure(122)
stem(x1,yy)
set(gca,'xticklabel',[1:3,0,0,0,500:503])
举个例子:
clc,clear;
A=[1 2 3;
4 5 6;
3 4 5;
5 6 7;
7 8 9];
plot(A(1,:),A(2,:));%第一行为x轴 第二行y
hold on
plot(A(1,:),A(3,:));%2 3
hold on
plot(A(1,:),A(4,:));% 3 4
hold on
plot(A(1,:),A(5,:));