Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How to plot the struct data. I am having an issue regarding plotting following data.
1 回表示 (過去 30 日間)
古いコメントを表示
Please let me know how can i import the data of.m file attached and plot it using matlab gui or programming. Your help will be appreciable.
0 件のコメント
回答 (1 件)
Akira Agata
2018 年 5 月 2 日
Like this?
But, looking at your data, there are so many NaNs, and most of the data points are concentrated in some small clusters. So maybe some pre-processing and/or other type of visualization method would be desirable.
load('11kray.mat');
figure
plot(A.data(:,1),A.data(:,2))
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!