Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how do I make scatterplot from many data sets.

1 Ansicht (letzte 30 Tage)
Naoki Ishibashi
Naoki Ishibashi am 26 Sep. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 Kommentar
michio
michio am 27 Sep. 2016
How big your data size? Would it all fit in your memory space?

Antworten (1)

michio
michio am 27 Sep. 2016
See. https://jp.mathworks.com/matlabcentral/answers/304711-

Diese Frage ist geschlossen.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by