xdc_excitation.m
来自「FIELD II 是B超的matlab仿真程序。 执行 先运行 fie」· M 代码 · 共 26 行
M
26 行
% Procedure for setting the excitation pulse of an aperture%% Calling: xdc_excitation (Th,pulse); %% Parameters: Th - Pointer to the transducer aperture. % pulse - Excitation pulse of aperture as row vector%% Return: None%% Version 1.0, November 27, 1995 by Joergen Arendt Jensenfunction res = xdc_excitation (Th, pulse)% Test that pulse is of right dimension [n,m]=size(pulse); if (n ~= 1) error ('Pulse must be a row vector'); end% Call the C-part of the program to show aperture Mat_field (1051,Th,pulse);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?