📄 ele_apodization.m
字号:
% Procedure for setting the apodization of individual% mathematical elements making up the transducer%% Calling: ele_apodization (Th, element_no, apo); %% Parameters: Th - Pointer to the transducer aperture. % element_no - Column vector with one integer for each physical % element to set apodization for.% apo - Apodization values. Matrix with one row for each% physical element and a number of columns equal to the % number of mathematical elements in the aperture. %% Return: none.%% Version 1.0, June 29, 1998 by Joergen Arendt Jensenfunction res = ele_apodization (Th, element_no, apo)% Check the element number vector [m1,n]=size(element_no); if (n ~= 1) error ('Element_no vector must have one column'); end [m2,n]=size(apo);% Check both arrays if (m1 ~= m2) error ('There must be the same number of rows for element_no vector and apo matrix'); end% Call the C-part of the program to insert apodization Mat_field (1080, Th, element_no, apo);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -