代码拉取完成,页面将自动刷新
function Z = calc_wave( H0,W,time,Grid_Sign )
% Z = calc_wave( H0,W,time,Grid_Sign )
%
% This function calculate the wave height based on the wave coefficients H0
% and W, for a given "time". Default time=0 if not supplied.
% Fourth output parameter is optional (easy to recalculate anyway)
% recalculate the grid sign if not supplied in input
if nargin < 4
Grid_Sign = signGrid( param.meshsize ) ;
end
% Assign time=0 if not specified in input
if nargin < 3 ; time = 0 ; end
% Ht = H0 .* exp(1i .* W .* (t * timeStep)) + \
% conj(flip(flip(H0,1),2)) .* exp(-1i .* W .* (t * timeStep));
% wt = exp(1i .* W .* time ) ;
% Ht = H0 .* wt + conj(rot90(H0,2)) .* conj(wt) ;
% Z = real( ifft2(Ht) .* Grid_Sign ) ;
% conj()计算一个复数的共轭
% =rot90(A,k)矩阵A按照逆时针旋转90*k度
wt = exp(1i .* W .* time ) ;
Ht = H0 .* wt + conj(rot90(H0,2)) .* conj(wt) ;
Z = real( ifft2(Ht) .* Grid_Sign ) ;
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。