Updatemod: Difference between revisions

From Eigenvector Research Documentation Wiki
Jump to navigation Jump to search
imported>Scott
imported>Neal
 
(5 intermediate revisions by 2 users not shown)
Line 5: Line 5:
===Synopsis===
===Synopsis===


:umodl = updatemod(modl,''data'')
: umodl = updatemod(modl);        %update post-v2.0.1c model
: umodl = updatemod(modl,data);  %update pre-v2.0.1c model


===Description===
===Description===


The input <tt>modl</tt> is any older-version PLS_Toolbox model to be updated to the current release version model.
====Inputs====


Optional input ''<tt>data</tt>'' is required if the model was constructed using a version older than Version 2.0.1c.
* '''modl''' = the model to be updated.
* '''data''' = the original data must be supplied if the model was created by a PLS_Toolbox version before 2.0.1c.


The output is an updated model <tt>umodl</tt>.
====Output====
 
* '''umodl''' = an updated model.
If the model is not valid (not updatable or invalid format), an error is thrown.


===See Also===
===See Also===


[[analysis]], [[pca]], [[pcr]], [[pls]]
[[analysis]], [[evrimodel]], [[pca]], [[pcr]], [[pls]]

Latest revision as of 09:24, 23 October 2013

Purpose

Update model structure to be compatible with the current version.

Synopsis

umodl = updatemod(modl); %update post-v2.0.1c model
umodl = updatemod(modl,data); %update pre-v2.0.1c model

Description

Inputs

  • modl = the model to be updated.
  • data = the original data must be supplied if the model was created by a PLS_Toolbox version before 2.0.1c.

Output

  • umodl = an updated model.

See Also

analysis, evrimodel, pca, pcr, pls