0
我有這個行/列向量。如何在matlab中沿y軸繪製列向量數據?
grades = [90, 100, 80, 70, 75, 88, 98, 78, 86, 95, 100, 92, 29, 50];
plot(grades);
在MATLAB中,我想繪製沿着x軸的等級值和沿着y軸的指數(1-14)。通過default,指數沿x軸繪製。如何實現?
我有這個行/列向量。如何在matlab中沿y軸繪製列向量數據?
grades = [90, 100, 80, 70, 75, 88, 98, 78, 86, 95, 100, 92, 29, 50];
plot(grades);
在MATLAB中,我想繪製沿着x軸的等級值和沿着y軸的指數(1-14)。通過default,指數沿x軸繪製。如何實現?
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
如果你想在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)
還在輸出沒有變化。 – erbal