Plotting .mat file

조회 수: 3 (최근 30일)
Matej
Matej 2023년 12월 11일
답변: Sulaymon Eshkabilov 2023년 12월 11일
Hi,
I'm new to matlab. I'm trying to create a graph from a .mat file which I recerded on my phone, but I'm unable to do so. Any help appriciated.
  댓글 수: 2
Matt J
Matt J 2023년 12월 11일
Your metro.mat file doesn't contain anything.
Star Strider
Star Strider 2023년 12월 11일
There is nothing to plot, although sensorlog_20231201_123144.m4a could have something if you want to share it.

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

채택된 답변

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2023년 12월 11일
The problem with your data is that you have not collected any measured data or saved in it.
A = load('metro.mat')
A = struct with fields:
AudioInfo: [1×1 struct]
A.AudioInfo
ans = struct with fields:
Filename: 'sensorlog_20231201_123144.m4a' CompressionMethod: 'AAC' NumChannels: 2 SampleRate: 44100 TotalSamples: 2511768 Duration: 56.9562 Title: [] Comment: [] Artist: [] BitRate: 96

추가 답변 (1개)

Les Beckham
Les Beckham 2023년 12월 11일
That mat file doesn't contain anything interesting to plot.
load metro.mat
whos
Name Size Bytes Class Attributes AudioInfo 1x1 1784 struct ans 1x34 68 char cmdout 1x33 66 char
AudioInfo
AudioInfo = struct with fields:
Filename: 'sensorlog_20231201_123144.m4a' CompressionMethod: 'AAC' NumChannels: 2 SampleRate: 44100 TotalSamples: 2511768 Duration: 56.9562 Title: [] Comment: [] Artist: [] BitRate: 96

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by