Load and plot .mat file
Mostra commenti meno recenti
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?
Risposte (1)
x = load('signal1.mat')
y = load('signal2.mat')
plot(x.x,y.x,'.')
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
