xdc_center_focus.m
来自「FIELD II 是B超的matlab仿真程序。 执行 先运行 fie」· M 代码 · 共 35 行
M
35 行
% Procedure for setting the center point for the focusing.% This point is used as a reference for calculating the% focusing delay times and as a starting point for dynamic% focusing.%% Calling: xdc_center_focus (Th, point); %% Parameters: Th - Pointer to the transducer aperture. % point - Focus center point.%% Return: none.%% Version 1.0, May 20, 1997 by Joergen Arendt Jensenfunction res = xdc_center_focus (Th,point)% Check the point array [m2,n]=size(point); if (n ~= 3) error ('Point array must have three columns'); end% Check both arrays if (m2 ~= 1) error ('There must only be one row for the center point'); end% Call the C-part of the program to insert focus Mat_field (1063,Th,point);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?