📄 propdelay.m
字号:
function [TOR]= PropDelay(theta, phi,jj)
% TOR finds the Propagation Delay of the array.
% N is the number of line arrays.
% lambda is the frequency.
% C is the speed of light under water.
% delta is the distance between any two elements.
N=20;
f=1000;
c=1500;
lamda_upper=c/f;
delta=lamda_upper*0.45;
x=1:N;
y(1:N)=0;
z(1:N)=0;
x=x * delta;
TOR=((z(jj)*cos(theta))+(sin(theta)*(x(jj)*cos(phi)+y(jj)*sin(phi)))/c);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -