필터 지우기
필터 지우기

spl_meter function output vlaue difference

조회 수: 2 (최근 30일)
hamin je
hamin je 2021년 9월 6일
댓글: hamin je 2021년 9월 8일
hi i want 1/3 octave band db
so i use spl_meter function
but I put the same value into the same function, but the value that comes out is different.
I want to know reason this sitution

채택된 답변

jibrahim
jibrahim 2021년 9월 7일
Hi Hamin,
splMeter contains filters that remember the previous output, i.e. it has states. You should not expect the same input to give the same output. If you want to discard states (the effect of the previous input), call release first:
y = spl(x);
release(spl)
y2 = spl(x); % y and y2 are equal
Also, make sure x is a column vector, not a row vector, A 1-by-N row vector is treated as N indepedent channels of data, with one sample each.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Measurements and Spatial Audio에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by