Info

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

Plotting same dataset results in different outputs

1 回表示 (過去 30 日間)
Shawn Fernandes
Shawn Fernandes 2016 年 10 月 12 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
The file GMD_F16.dat has 1000 2D points, so 1000 rows & 2 col data.
The output seems different when plotting with for loop & when plotting within entire range, PFB commands & sample code for reference.
Plotting with For loop
subplot(1,4,1) for i = 1:rows plot(data1(i,1),data1(i,2),'k.') hold on end title('Original Data');
Plotting within entire range
subplot(1,4,3) plot(data1(:,1),data1(:,2),'k.','MarkerSize',12)
Please guide.

回答 (0 件)

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by