Skip to content

Commit

Permalink
Merge pull request #234 from epini/epini-patch-1
Browse files Browse the repository at this point in the history
Fix data ordering in traj.iquv
  • Loading branch information
fangq authored Oct 14, 2024
2 parents 8c0cfec + 0411ec6 commit 6dbcc0f
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 6dbcc0f

Please sign in to comment.