⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xdc_dynamic_focus.m

📁 FIELD II 是B超的matlab仿真程序。 执行 先运行 field_init.m
💻 M
字号:
%  Procedure for using dynamic focusing for an aperture%%  Calling:  xdc_dynamic_focus (Th, time, dir_zx,dir_zy); %%  Parameters:  Th        - Pointer to the transducer aperture.  %               time      - Time after which the dynamic focus is valid. %               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.%%  Return:      none.%%  Version 1.02, March 19, 1998 by Joergen Arendt Jensenfunction res = xdc_dynamic_focus (Th,time,dir_zx,dir_zy)%  Check the times vector  [m1,n]=size(time);  if ((n ~= 1) & (m1 ~= 1))     error ('Time must be a scalar');    end%  Check the direction  [m1,n]=size(dir_zx);  if ((n ~= 1) & (m1 ~= 1))     error ('Direction must be a scalar');    end%  Check the direction  [m1,n]=size(dir_zy);  if ((n ~= 1) & (m1 ~= 1))     error ('Direction must be a scalar');    end%  Call the C-part of the program to insert focus   Mat_field (1062,Th,time,dir_zx,dir_zy);

⌨️ 快捷键说明

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