Effacer les filtres
Effacer les filtres

plot data from .mat file

8 vues (au cours des 30 derniers jours)
akriti
akriti le 16 Fév 2024
Modifié(e) : Askic V le 16 Fév 2024
Hello,
I have some 649x1 double data saved in "Fidelity_result.mat" file from a matlab code. I want to plot these data as y axis and x axis should be entries from 1 to length of the entries in "Fidelity_result.mat" file. The matlab code shows no error but the figure displayed at the end is blank.
folder = 'C:\Users\Laborbenutzer\Desktop\Tomography Test Akriti';
y=load("Fidelity_result.mat");
y_fidelity=y.Fidelity_result;
x_fidelity=(1:1:size(y_fidelity,1)).';
plot(x_fidelity,y_fidelity)
  2 commentaires
Stephen23
Stephen23 le 16 Fév 2024
Please upload your MAT file by clicking the paperclip button.
Dyuman Joshi
Dyuman Joshi le 16 Fév 2024
The plot is not blank here, see below.
"The matlab code shows no error but the figure displayed at the end is blank."
Could you share the screenshot of the code ran along with the screenshot of the figure generated?
y=load("Fidelity_result.mat");
y_fidelity=y.Fidelity_result;
x_fidelity=(1:1:size(y_fidelity,1)).';
plot(x_fidelity,y_fidelity)
Also, if you want to plot against indices, you can plot it directly -
figure
plot(y_fidelity)

Connectez-vous pour commenter.

Réponses (1)

Askic V
Askic V le 16 Fév 2024
Modifié(e) : Askic V le 16 Fév 2024
I would do it like this:
load (websave('Fidelity_result.mat', 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/1618953/Fidelity_result.mat'))
x = 1:numel(Fidelity_result);
plot(x, Fidelity_result)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by