run
Syntax
Description
uses the provided inputs to evaluate all nodes in the pipeline or component
output1 = run(learnedPipe,input1,...,inputN)learnedPipe that are required to return output1.
The function ignores nodes that are not required to return the output.
___ = run(___,
specifies optional run parameters in addition to any of the input or output argument
combinations in previous syntaxes. The software forwards the run parameter values to
individual components during the execution of Name,Value)learnedPipe.
If
learnedPipeis aLearningPipelineobject, then specifyNameas the component name with/as a prefix to the parameter name, to disambiguate between components that have the same parameter name. For example, specifyrun(learnedPipe,X,Y,"ClassificationSVM/LossFun","classifcost").If
learnedPipeis a learning component object, then specifyNameas the parameter name. In this case, you can use theName=Valuesyntax. For example, specifyrun(learnedPipe,X,Y,LossFun="classifcost"). Usehelp(learnedPipe)to see the available run parameters.
Examples
Input Arguments
Output Arguments
Version History
Introduced in R2026a

