How do I load and plot the .mat file

139 visualizaciones (últimos 30 días)
Junzhen Liu
Junzhen Liu el 5 de Nov. de 2021
Comentada: Junzhen Liu el 5 de Nov. de 2021
How do I plot it out? Thank you for anyone who can help
  4 comentarios
Jan
Jan el 5 de Nov. de 2021
This cannot work:
load('A1S1.mat', '_1_Time')
Names of variables cannot start with an underscore.
What is the contents of the mat file?
data = load('A1S1.mat')
Junzhen Liu
Junzhen Liu el 5 de Nov. de 2021
Sorry, I just update the file, can you check again?

Iniciar sesión para comentar.

Respuestas (1)

DGM
DGM el 5 de Nov. de 2021
Editada: DGM el 5 de Nov. de 2021
This is one way:
S = load('lab31part1.mat');
t = S.lab3_part1_Time;
v = S.lab3_part1_Value;
subplot(2,1,1)
plot(t(:,1),v(:,1))
grid on
subplot(2,1,2)
plot(t(:,2),v(:,2))
grid on
Or if you want them in the same axes:
clf % just to reset web-plot
S = load('lab31part1.mat');
t = S.lab3_part1_Time;
v = S.lab3_part1_Value;
plot(t,v)
grid on

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by