필터 지우기
필터 지우기

RMS amplitude

조회 수: 12 (최근 30일)
Sonia Wiemann
Sonia Wiemann 2012년 4월 17일
댓글: dpb 2024년 7월 19일 14:36
How can I divide a sound wave by its rms amplitude?

채택된 답변

Geoff
Geoff 2012년 4월 17일
I gave an answer today that required an RMS calculation.
You can make a throw-away function for RMS:
RMS = @(x) sqrt(mean(x.^2));
And then to answer your question:
signal = signal / RMS(signal);
  댓글 수: 1
dpb
dpb 2024년 7월 19일 14:36
Stumbled on this from suggested links -- beginning with R2012a the Signal Processing TB contains rms which was subsequently moved into MATLAB proper with R2022a.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by