Skip to content
Snippets Groups Projects
Commit 73aa7ed1 authored by Federico Felici's avatar Federico Felici
Browse files

bugfix in bind

parent 657ac2cf
No related branches found
No related tags found
No related merge requests found
......@@ -275,9 +275,9 @@ classdef SCDclass_mdspar < matlab.mixin.Heterogeneous
function obj = bind(obj,modelname,datadictionary,exportedtp)
for ii=1:numel(obj)
obj(ii) = obj.setmodelname(modelname);
obj(ii) = obj.setdatadictionary(datadictionary);
obj(ii) = obj.setparamstructure(exportedtp);
obj(ii) = obj(ii).setmodelname(modelname);
obj(ii) = obj(ii).setdatadictionary(datadictionary);
obj(ii) = obj(ii).setparamstructure(exportedtp);
end
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