仅绘制x轴中的数据点

时间:2014-10-11 21:26:20

标签: matlab plot axes

它应该有一个我以某种方式遗失的简单答案。

我想只绘制x轴上的数据点。其他一点让事情变得更加混乱。enter image description here

这是我的代码:

figure(6);
grid on;
hold on;

colorVec = hsv(length(crl));

for i = 1:(length(crl)-1)
    plot(dc,pathLoadMatrix(i,:),'Color',colorVec(i,:),'linewidth',2, 'marker','o');

end

legend('Crl 10%', 'Crl 20%', 'Crl 30%', 'Crl 40%', 'Crl 50%');
xlabel('No of DC');
ylabel('Primary Path Load');
hold off;

1 个答案:

答案 0 :(得分:2)

试试这个:set( gca(), 'xtick', [2:6] )

答案必须至少为30个字符,因此这是填充文字。