Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to plot the struct data. I am having an issue regarding plotting following data.

1 vue (au cours des 30 derniers jours)
sangram more
sangram more le 25 Avr 2018
Clôturé : MATLAB Answer Bot le 20 Août 2021
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.

Réponses (1)

Akira Agata
Akira Agata le 2 Mai 2018
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))

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by