Hello. Just start to learning this program. I have .mat file with many colons and i want to make a plot only from two of them, how can i make it ?

2 vues (au cours des 30 derniers jours)
Data = load('MERITEV_CAS.mat');
x=Data(:,6);
y=Data(:,8);
plot(x,y)

Réponse acceptée

Voss
Voss le 16 Avr 2024
This is presuming that the variable in your mat file is called "Data"; if it's called something else, replace "Data" in the code with that name.
S = load('MERITEV_CAS.mat');
x=S.Data(:,6);
y=S.Data(:,8);
plot(x,y)

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by