matlab散点图

x = rand(14,17);
for i = 1:13
【matlab散点图】subplot(3,5,i);plot(x(i,:),'*');hold on;
plot(x(i+1,:),'r*');
title(['第',num2str(i),'行与第',num2str(i+1),'行']);
end
是这个意思么?

matlab散点图


    猜你喜欢