I want to plot mat file
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sandhya sandhya
am 20 Aug. 2018
Bearbeitet: sandhya sandhya
am 5 Sep. 2018
I want to plot mat file with command s=load('signal.mat'); plot(s) but there is error in that command how to plot the signal
4 Kommentare
madhan ravi
am 20 Aug. 2018
Bearbeitet: madhan ravi
am 20 Aug. 2018
FYI there is no file attached , please click the paper clip button and then upload it.
Akzeptierte Antwort
Stephan
am 20 Aug. 2018
Bearbeitet: Stephan
am 20 Aug. 2018
Hi,
s = load('signal.mat');
will give you a struct s containing fields with your variable(s) in it. Access this data fields with the dot-Notation:
plot(s.your_variable_name_to_plot)
should work.
EDIT:
Your file contains a numeric Matrix of size 10x20480 which appears like 10 data sets - which shall be plotted?
s = load('signal.mat');
plot(transpose(s.val))
will plot all the data in one plot:
Best regards
Stephan
6 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!