x 軸に 528 点のプロットがあります。x 軸は mmm yyyy でラベル付けされます。その上にデータをプロットしたいのですが、データは月次形式です。毎月のデータ ポイントのそれぞれを取得し、月の初めにドットとしてプロットしたいと考えています。
% Axis and plot
t = 731:1258; % 20120101 to 20130611
y = reshape(dataPoint_Anom1x1(:,:,731:end),[],1); % Size 528x1
x = datenum(2009, 12, 31) + t; % Convert t into serial numbers
plot(x, y); % Plot data
hold on
下の部分は私が問題を抱えている部分です。dataPoint_Clim1x1 のサイズは 12x1 です。(1,1) は 1 月に対応し、(2,1) は 2 月に対応します。2012 年 1 月から 2013 年 6 月までの各月の初めに、対応する月の気候ポイントをドットとしてプロットする必要があります。
%%%% Plot climatology on the same graph
dataClim_1x1 = dataClim(u,v,:); % Array that only contains points 1 degree away from 72.5E and 67.25S
B = mean(dataClim_1x1); % Average along the column
dataPoint_Clim1x1 = mean(B,2); % Average along the row
x_dataClim = ???
y_dataClim = reshape(dataPoint_Clim1x1, [],1); % Change dataPoint_Clim1x1 into a 1 column matrix
plot(x_dataClim,y_dataClim) % y_dataClim is only 12x1.
したがって、上記のプロット コマンドは間違っています。どういうわけかdatenumで毎月プロットするようにx軸を設定する必要がありますか? ただし、2 次軸は使用したくありません。