📄 calc_hp.m
字号:
% Procedure for calculating the emitted field.%% Calling: [hp, start_time] = calc_hp(Th, points); %% Parameters: Th - Pointer to the transmit aperture. % points - Field points. Vector with three columns (x,y,z) % and one row for each field point. %% Return: hp - Emitted pressure field% start_time - The time for the first sample in field.%% Version 1.0, November 28, 1995 by Joergen Arendt Jensenfunction [hhp, start_time] = calc_hp (Th, points)% Check the point array [m,n]=size(points); if (n ~= 3) error ('Points array must have three columns'); end% Call the C-part of the program to show aperture [hhp, start_time] = Mat_field (4002,Th,points);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -