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.

 채택된 답변

Adam
Adam 2016년 9월 1일

0 개 추천

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.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Line Plots에 대해 자세히 알아보기

태그

질문:

2016년 9월 1일

댓글:

2016년 9월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by