comparing plots with matlab
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Princy Manaswini
am 1 Sep. 2016
Kommentiert: Princy Manaswini
am 27 Sep. 2016
I need to compare the nature(i.e envelope) of two graphs/plots whose amplitudes are different but the shape of the graphs is same. please help with a tool-box or some commands.
0 Kommentare
Akzeptierte Antwort
Adam
am 1 Sep. 2016
Depends how you want to compare them, but you can just normalise both and plot on the same graph if you want to remove the effect of amplitude and look only at shape.
e.g.
normEnv1 = env1 / max( env1 );
normEnv2 = env2 / max( env2 );
figure;
plot( normEnv1 );
hold on
plot( normEnv2 );
This assume the two functions are of the same length and in sync with each other in terms of the sample locations.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!