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

Bug fix in PAC/MCE expectation with cherrypick (was only affecting PAC models...

Bug fix in PAC/MCE expectation with cherrypick (was only affecting PAC models with transformed variables).
parent e6a27ddb
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@ for i=1:length(alphaid)-1
for k=length(transformations):-1:1
variable = sprintf('%s(%s)', transformations{k}, variable);
end
expression = sprintf('%s-(%s)*diff(%s(%i))', expression, tmp, variable);
expression = sprintf('%s-(%s)*diff(%s)', expression, tmp, variable);
end
end
......
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