필터 지우기
필터 지우기

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