你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 04:56:51 +08:00
Corrected bug with time vector used in plotting scripts.
这个提交包含在:
@@ -20,7 +20,7 @@ if filename ~= 0
|
||||
header.nrx = h5readatt(fullfilename, '/', 'nrx');
|
||||
|
||||
% Time vector for plotting
|
||||
time = linspace(0, (header.iterations)*(header.dt), header.iterations)';
|
||||
time = linspace(0, (header.iterations - 1) * header.dt, header.iterations)';
|
||||
|
||||
% Initialise structure for field arrays
|
||||
fields.ex = zeros(header.iterations, header.nrx);
|
||||
|
在新工单中引用
屏蔽一个用户