Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 908bd6b9 authored by hhakim's avatar hhakim
Browse files

Fix a regression side effect bug in FaustCore copy of factors due to b2d3fe85...

Fix a regression side effect bug in FaustCore copy of factors due to b2d3fe85 (as_faust arg of matfaust.Faust.factors).
parent 0db4d29b
Branches
Tags
No related merge requests found
......@@ -81,7 +81,7 @@ classdef FaustCore < handle
nf = call_mex(this, 'numfactors');
facts = cell(1, nf);
for i=1:nf
facts{i} = call_mex(this, 'factors', i);
facts{i} = call_mex(this, 'factors', uint64([i-1]));
end
this = FaustCore(facts, 1.0, false, this.isRealFlag, this.dev, this.dtype);
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment