Main Content

slsliceroptions

Create options object for configuring Model Slicer

Description

example

slsliceroptions creates an options object for configuring the Model Slicer.

example

slsliceroptions(model) creates a copy of the Model Slicer options object associated with model.

slsliceroptions(file) creates a copy of the Model Slicer options object contained in the SLMS file file.

slsliceroptions(model,opts) attaches the slicer options opts to the model model by overwriting the existing options.

slsliceroptions(file,opts) attaches the slicer options opts to the SLMS file file by overwriting the existing options.

Examples

collapse all

Add a new starting point and a new exclusion point to the active Model Slicer configuration.

Open the slexAircraftExample example model.

openExample('simulink_aerospace/AircraftLongitudinalFlightControlExample')

Double click on slexAircraftExample model in the current directory.

Define the options file opts for the model.

opts = slsliceroptions('slexAircraftExample')

Add a new starting point on the Gain block.

addStartingPoint(opts,'slexAircraftExample/Gain')

Add a new exclusion point on the q(rad) block.

addExclusionPoint(opts,'slexAircraftExample/q(rad)')

Add a starting point and an exclusion point to the active Model Slicer configuration without overwriting the original configuration.

Open the slexAircraftExample example model.

openExample('simulink_aerospace/AircraftLongitudinalFlightControlExample')

Define the options file opts for the model.

opts = slsliceroptions('slexAircraftExample')

Create a second Model Slicer options configuration for the model.

addConfiguration(opts)

Add a new starting point on the Gain block for the second Model Slicer options configuration.

addStartingPoint(opts.Configuration(2),'slexAircraftExample/Gain')

Add a new exclusion point on the q (rad) block for the second Model Slicer options configuration.

addExclusionPoint(opts.Configuration(2),'slexAircraftExample/q (rad)')

Input Arguments

collapse all

Name of the model whose Model Slicer options object you configure.

Name of the SLMS file containing the Model Slicer options object that you configure.

Example: slsliceroptions('slexAircraftExample.slms')

Structure containing the options for the Model Slicer configuration.

Version History

Introduced in R2015b