series
Syntax
Description
creates a pipeline (pipeline = series(pipe1,...,pipeN)pipeline) by connecting the components or pipelines
pipe1 through pipeN in an ordered series. Use
series to model sequential, order-dependent processes or
workflows.
series connects the outputs of pipe1 to the
inputs of pipe2 by matching port tags. If no matches are found, no
connections are made. pipe1 and pipe2 then form a
pipeline and the process repeats. That is, the function sequentially appends the remaining
pipe3 through pipeN components or pipelines to the
pipeline. This process might leave some ports unconnected. These unconnected ports become
inputs and outputs of the pipeline.
pipe1 through pipeN must have unique names.
series renames any component that has the same name as another
component already in the pipeline. New names consist of the original name with a numeric
suffix.
creates a pipeline where the pipeline elements of pipeline = series(pipe1,...,pipeN,ExpandSubpipelines=expandflag)pipe1,...,pipeN are
either expanded or collapsed, based on the value of expandflag.
Examples
Input Arguments
Output Arguments
Version History
Introduced in R2026a