资源简介
这个是在网上找的超声声场仿真软件,用MATLAB编写的,很强大
代码片段和文件信息
% Procedure for calculating the spatial impulse response
% for an aperture.
%
% Calling: [h start_time] = calc_h(Thpoints);
%
% Parameters: Th - Pointer to the transducer aperture.
% points - Field points. Vector with three columns (xyz)
% and one row for each field point.
%
% Return: h - Spatial impulse response in m/s.
% start_time - The time for the first sample in h.
%
% Version 1.01 October 4 1996 by Joergen Arendt Jensen
function [h start_time] = calc_h (Thpoints)
% Check the point array
[mn]=size(points);
if (n ~= 3)
error (‘Points array must have three columns‘);
end
% Call the C-part of the program to show aperture
[h start_time] = Mat_field (4001Thpoints);
- 上一篇:matlab初学教程超详细
- 下一篇:GPS定位程序代码
相关资源
- GPS定位程序代码
- matlab初学教程超详细
- 基于MATLAB的语音识别简明代码完整版
-
Simuli
nk的低通数字滤波器的仿真分析 - matlab 车牌定位与分割 详细注释
- matlab实现一维和二维离散小波变换,
- 检索视频中运动的点并计算线速度角
-
基于Simuli
nk的DSB调制解调系统仿真 -
基于Simuli
nk的MFSK系统的仿真 -
基于Simuli
nk的模拟通信仿真 - BM3D matlab
- ADS MATLAB
- RSM算法仿真MATLAB代码
- 模式识别与智能计算matlab实现 安装
- matlab音效处理
- 《全面详解LTE:MATLAB建模、仿真与实
- 《先进PID控制MATLAB仿真第3版》程序代
- 基于Matlab的AM、DSB、SSB信号的调制
- 最优路径算法matlab程序
- 三电平svpwm逆变器仿真(matlabr2009b)
- 轿车ASR的ADAMS_CAR和MATLAB联合仿真
- MATLAB 粒子滤波目标跟踪代码
- ASM二维图像分割MATLAB代码
- MATLAB计算两个图片的单应性矩阵
- matlabR2017b迅雷种子文件及安装教程.
- 平行因子分析法drEEM2.0
- Digital Signal Processing Using Matlab v4.0 (
- SAD模板匹配算法matlab实现
- labview与Matlab混合编程的资料共享
- Matlab+YALMIP+CPLEX的安装与入门
评论
共有 条评论