Skip to content

Commit

Permalink
Fix data ordering in traj.iquv
Browse files Browse the repository at this point in the history
  • Loading branch information
epini authored Oct 9, 2024
1 parent 8c0cfec commit 0411ec6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mcxlab/mcxlab.m
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@
traj.srcid = int32(data(6, :)');
if (size(data, 1) >= 10)
traj.iquv = data(7:10, :)';
traj.iquv = traj.iquv(idx, :);
end
traj.data = [single(traj.id)'; data(2:end, idx)];
newtraj(i) = traj;
Expand Down

0 comments on commit 0411ec6

Please sign in to comment.