⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 beam_ta.m

📁 hi i have a huge collection are you interested
💻 M
字号:
function b = beam_ta(psiv,x,psi0,lambda)%BEAM_TA Calculate the beam pattern for a line array.%       B = BEAM_TA(PSIV,X,PSI0,LAMBDA) Returns the beam pattern B =%       (|G|/|G_max|)^2 at angles defined by the vector PSIV for a line of%       hydrophones at locations X. PSI0 is the steering angle and lambda is%       the wavelength.% (See Workbook 3, p 40)% A. Knight, July 1995[PSI,X] = meshgrid(psiv,x);i = sqrt(-1);G = sum(exp(i*2*pi*X.*(sin(PSI) - sin(psi0))/lambda));Gmax = max(G);b = (abs(G)/Gmax).^2;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -