xdc_piston.m
来自「FIELD II 是B超的matlab仿真程序。 执行 先运行 fie」· M 代码 · 共 31 行
M
31 行
% Procedure for creating a flat, round piston transducer%% Calling: Th = xdc_piston (radius, ele_size); %% Parameters: radius - Radius of aperture.% ele_size - Size of elements for modeling transducer.%% All dimensions are in meters.%% Return: A handle Th as a pointer to this transducer aperture.%% Version 1.0, September 3, 1996 by Joergen Arendt Jensenfunction Th = xdc_piston (radius, ele_size)% Check that all parameters are valid if (radius<0) error ('Field error: Negative radius of physical transducer elements') end if (ele_size<=0) | (ele_size>radius) error ('Field error: Illegal size of mathematical element') end% Call the C-part of the program to create aperture Th = Mat_field (1010, radius, ele_size);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?