필터 지우기
필터 지우기

please explainn this and guide me to develope the code

조회 수: 2 (최근 30일)
Anjireddy Thatiparthy
Anjireddy Thatiparthy 2013년 7월 30일
[P,F] = spectrum(SSSS,128,0,hanning(128),1/15);
is the old version of matlabs solution to find the spectrum of the signal named 'SSSS'.
can any one explain this ??
what is the equivalent of above spectrum, that compatible to the latest version of MATLAB ?

채택된 답변

Wayne King
Wayne King 2013년 7월 30일
You can do the following
[Pxx,F] = pwelch(SSSS,hanning(128),0,128,1/15);
The syntax you are using above is:
[P,F] = SPECTRUM(X,NFFT,NOVERLAP,WINDOW,Fs)
to get the equivalent in an updated version of MATLAB use the corresponding syntax for pwelch.m

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by