我有这个行/列向量。
grades = [90, 100, 80, 70, 75, 88, 98, 78, 86, 95, 100, 92, 29, 50];
plot(grades);
在MATLAB中,我想绘制沿x轴的等级值和沿y轴的索引(1-14)。通过deafult,指数沿x轴绘制。如何实现?
答案 0 :(得分:1)
grades = [90, 100, 80, 70, 75, 88, 98, 78, 86, 95, 100, 92, 29, 50];
figure;
plot(1:length(grades),grades); % Indices along X
figure;
plot(grades,1:length(grades)); % Indices along Y
答案 1 :(得分:0)
如果要在Matlab中绘制数据。您必须为您感兴趣的所有轴定义数据集。
在您的情况下,定义x轴数据和y轴数据。
例如,您的Y轴数据将是
grades = [90 100 80 70 75 88 98 78 86 95 100 92 29 50];
对于您的x数据,您可以使用以下内容。
X = 1:14;
然后你有以下情节命令
plot(x,grades)