bft_filter.m
来自「超声仿真软件」· M 代码 · 共 24 行
M
24 行
%BFT_FILTER Set a low pass filter, used for the delays in the beamforming.% The BFT uses the filter by upsampling the signal to a new frequency% fs1 = fs * Nf, and then picking the necessary sample. The length% of the filter must be Nf*Ntaps - 1, where Ntaps is the number of% samples in the original sample used to create a new sample in the % upsampled one.%%USAGE : bft_filter(Nf, Ntaps, h)%%INPUTS : Nf - Ratio between the new and old sampling frequencies [Integer]% Ntaps - Number of samples from the original signal, used to % create one new sample [Integer]% h - The impulse response of the filter.% length(h) == Nf*Ntaps%%%OUTPUT : None%%VERSION : 1.0 05 Sep 2000, Svetoslav Nikolovfunction bft_filter(Nf, Ntaps, h)bft(18, Nf, Ntaps, h)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?