slTunerOptions
Set slTuner interface options
Syntax
options = slTunerOptions
options = slTunerOptions(Name,Value)
Description
options = slTunerOptions returns the default slTuner interface option set.
options = slTunerOptions(Name,Value) returns an option set with additional
options specified by one or more Name,Value pair arguments.
Examples
Create Option Set for slTuner Interface
Create an option set for an slTuner interface that sets the rate conversion method to the
Tustin method with prewarping at a frequency of 10 rad/s.
options = slTunerOptions('RateConversionMethod','prewarp',...
'PreWarpFreq',10);
Alternatively, use dot notation to set the values of options.
options = slTunerOptions;
options.RateConversionMethod = 'prewarp';
options.PreWarpFreq = 10;
slTunerOptions