Info
此问题已关闭。 请重新打开它进行编辑或回答。
how do I make scatterplot from many data sets.
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
此问题已关闭。
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!