フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how do I make scatterplot from many data sets.

1 回表示 (過去 30 日間)
Naoki Ishibashi
Naoki Ishibashi 2016 年 9 月 26 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I want to load data sets, TA20040101.txt to TA20041231.txt, and make one scatterplot. following my code;
for i = 1:12
if i<10
monstr = ['0', num2str(i)];
else
monstr = num2str(i);
end
for j = 1:31
if j<10
daystr = ['0', num2str(j)];
else
daystr = num2str(j);
end
filename = ['TA2004',monstr,daystr,'.txt'];
x = load(filename);
scatterplot(x)
hold on
end
end
please give me advice
  1 件のコメント
michio
michio 2016 年 9 月 27 日
How big your data size? Would it all fit in your memory space?

回答 (1 件)

michio
michio 2016 年 9 月 27 日
See. https://jp.mathworks.com/matlabcentral/answers/304711-

この質問は閉じられています。

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by