📄 bft_focus.m
字号:
%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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -