How do I load and plot the .mat file

조회 수: 41 (최근 30일)
Junzhen Liu
Junzhen Liu 2021년 11월 5일
댓글: Junzhen Liu 2021년 11월 5일
How do I plot it out? Thank you for anyone who can help
  댓글 수: 4
Jan
Jan 2021년 11월 5일
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 2021년 11월 5일
Sorry, I just update the file, can you check again?

댓글을 달려면 로그인하십시오.

답변 (1개)

DGM
DGM 2021년 11월 5일
편집: DGM 2021년 11월 5일
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

카테고리

Help CenterFile Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by