bft_focus_2way.m
来自「超声仿真软件」· M 代码 · 共 24 行
M
24 行
%BFT_FOCUS_2WAY Create a 2way focus time line defined by focal points.% These focus settings are relevant only for synthetic aperture imaging.% This is the classical monostatic synthetic aperture focusing%% USAGE : bft_focus_2wy(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, Apr 2000, Svetoslav Nikolovfunction bft_focus_2way(xdc, times, points, line_no) points = points';if(nargin < 4) line_no = 1; end; bft(16, xdc, times, points, line_no);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?