1

ここに私のコードがあります:

%% Load and plot precipitation data

%Read the salinity data file
fid = fopen('Everglades Precip USHDCN.csv');

%Read the salinity data file
everglades_ushcn_data = textscan(fid, '%f %*f %f %*s %f f', 'HeaderLines',2, 'Delimiter', ',');

%Close the data file
fclose(fid);

%Precip data is in the 2nd column
everglades_precip_data = everglades_ushcn_data(:, 4);

%Convert everything to a matrix
matrix_data = cell2mat(everglades_ushcn_data);

%Convert a date vector to a date number
datenums = datenum(matrix_data(:, 3:-1:1));

%Select dates
everglades_precip_year = everglades_ushcn_data{3};


%Plot surface precip data
figure
plot(datenums,everglades_precip_data)

%Convert the x axis to label date
datetick(gca)

xlabel ('Date', 'Fontsize', 14)
ylabel('Precipitation', 'Fontsize', 14)
title('Everglades Precipitation', 'Fontsize', 16)

私が得るエラーメッセージは言う:

プロット使用時のエラー セルから double への変換はできません。

Evergladesprecipushdcn のエラー (28 行目) plot(datenums,everglades_precip_data)

助けてください!

4

1 に答える 1

6

おそらくこれで修正できます:

plot(datenums,[everglades_precip_data{:}]);

またはこれ:

plot(datenums,cell2mat(everglades_precip_data));
于 2013-07-02T14:18:33.850 に答える