你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 04:56:51 +08:00
Corrected bug with time vector used in plotting scripts.
这个提交包含在:
@@ -17,8 +17,8 @@ if filename ~= 0
|
||||
field = input(prompt,'s');
|
||||
fieldpath = strcat('/rxs/rx1/', field);
|
||||
field = h5read(filename, fieldpath)';
|
||||
time = linspace(0, iterations*dt, iterations)';
|
||||
traces = 0:size(field,2);
|
||||
time = linspace(0, (iterations - 1) * dt, iterations)';
|
||||
traces = 0:size(field, 2);
|
||||
|
||||
fh1=figure('Name', filename);
|
||||
clims = [-max(max(abs(field))) max(max(abs(field)))];
|
||||
@@ -50,4 +50,4 @@ if filename ~= 0
|
||||
set(fh1,'PaperPosition', [xMargin yMargin xSize ySize])
|
||||
set(fh1,'PaperOrientation', 'portrait')
|
||||
|
||||
end
|
||||
end
|
||||
|
在新工单中引用
屏蔽一个用户