Load and plot .mat file
Ältere Kommentare anzeigen
I need to load these files and plot them in frequency domain but currently this error keep appearing:
x = load('signal1.mat');
y = load('signal2.mat');
plot(x, y);
Error in q4 (line 3)
plot(x, y);
How to solve this problem?
Antworten (1)
x = load('signal1.mat')
y = load('signal2.mat')
plot(x.x,y.x,'.')
Kategorien
Mehr zu Frequency-Domain Analysis finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
