Skip to content
Snippets Groups Projects
Verified Commit 98ebc002 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Bug fix (wrong dimension).

The routine, with method='spline-sum' for flow variables, could not handle dseries
objects with more than one variable.
parent 8f0f19e2
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ switch method
% Compute first difference to get flow values
dOF = dO(2:end) - dO(1:end-1);
% Construct the final data
tdata = dOF(ids:ide);
tdata(:,i) = dOF(ids:ide);
end
otherwise
error('Unknow method.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment