bft_focus.m
来自「matlab波束形成工具箱」· M 代码 · 共 22 行
M
22 行
%BFT_FOCUS Create a focus time line defined by focal points.%% USAGE : bft_focus(xdc, times, points, line_no)%% INPUT : xdc - Pointer to aperture.% times - Time after which the associated focus is valid% points - Focus points. Vector with three columns (x,y,z) % and one row for each field point.% line_no - Number of line for which we set the focus. If % skipped, 'line_no' is assumed equal to '1'.%% OUTPUT : none%% VERSION: 1.0, Feb 2000, Svetoslav Nikolovfunction bft_focus(xdc, times, points, line_no) points = points';if(nargin < 4) line_no = 1; end; bft(7, xdc, times, points, line_no);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?