Skip to content
Snippets Groups Projects
Verified Commit fc358e91 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

@dseries/center{,_}.m: in geometric centering, use @rdivide instead of @mrdivide

@rdivide is actually more correct, because we’re not doing an
element-by-element division.

And, more importantly, MATLAB R2009b does not accept @mrdivide in bsxfun.
parent 830838aa
Branches
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ end
m = mean(o.data);
if geometric
o.data = bsxfun(@mrdivide, o.data, m);
o.data = bsxfun(@rdivide, o.data, m);
else
o.data = bsxfun(@minus, o.data, m);
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment