bft_dynamic_focus.m

来自「超声仿真软件」· M 代码 · 共 22 行

M
22
字号
%BFT_DYNAMIC_FOCUS Set dynamic focusing for a line%% USAGE : bft_dynamic_focus(xdc, dir_xz, dir_zy, line_no)% % INPUT : xdc     - Pointer to the transducer aperture%         dir_zx  - Direction (angle) in radians for the dynamic%                   focus. The direction is taken from the center for%                   the focus of the transducer in the z-x plane.%         dir_zy  - Direction (angle) in radians for the dynamic%                   focus. The direction is taken from the center for%                   the focus of the transducer in the z-y plane.%         line_no - Number of line. If skipped, 'line_no' is assumed%                   to be equal to '1'%% OUTPUT : None% % VERSION: 1.0, Feb 11, 2000 Svetoslav Nikolov function bft_dynamic_focus(xdc, dir_xz, dir_yz, line_no)if (nargin < 4) line_no = 1; end;bft(10, xdc, dir_xz, dir_yz, line_no);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?