mirror of https://github.com/thesofproject/sof.git
[SKIP CI] Tools: Test: Audio: Fix standard low-pass help text
Fix a confusing mistake high-pass -> low_pass and typo. It's only a user help text change for "help stdlpf". Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
parent
c7674e85e9
commit
2841dc93c2
|
@ -1,8 +1,8 @@
|
||||||
function y = stdlpf(x, fu, fs)
|
function y = stdlpf(x, fu, fs)
|
||||||
|
|
||||||
%% y = stdhpf(x, fu, fs)
|
%% y = stdlpf(x, fu, fs)
|
||||||
%
|
%
|
||||||
% Standard high-pass filter
|
% Standard low-pass filter
|
||||||
%
|
%
|
||||||
% Input
|
% Input
|
||||||
% x - input signal
|
% x - input signal
|
||||||
|
|
|
@ -2,7 +2,7 @@ function b = stdlpf_get(fu, fs)
|
||||||
|
|
||||||
%% b = stdlpf_get(fu, fs)
|
%% b = stdlpf_get(fu, fs)
|
||||||
%
|
%
|
||||||
% Standard loww-pass filter
|
% Standard low-pass filter
|
||||||
%
|
%
|
||||||
% Input
|
% Input
|
||||||
% fu - upper band-edge frequency
|
% fu - upper band-edge frequency
|
||||||
|
|
Loading…
Reference in New Issue