Updated loading and plotting of time array to match Python plotting tools, i.e. in seconds rather than nano-seconds.

这个提交包含在:
craig-warren
2017-08-15 11:06:59 +01:00
父节点 06909a57e1
当前提交 040abec33c
共有 2 个文件被更改,包括 8 次插入8 次删除

查看文件

@@ -17,7 +17,7 @@ if filename ~= 0
field = input(prompt,'s');
fieldpath = strcat('/rxs/rx1/', field);
field = h5read(filename, fieldpath)';
time = 0:dt:iterations * dt;
time = linspace(0, iterations*dt, iterations)';
traces = 0:size(field,2);
fh1=figure('Name', filename);