| Contents | Index |
opts = d2dOptions
opts = d2dOptions('OptionName', OptionValue)
opts = d2dOptions returns the default options for d2d.
opts = d2dOptions('OptionName', OptionValue) accepts one or more comma-separated name/value pairs that specify options for the d2d command. Specify OptionName inside single quotes.
This table summarizes the options that the d2d command supports.
Resample a discrete-time model using the 'tustin' method with frequency prewarping.
Create the discrete-time transfer function
![]()
h1 = tf([1 1], [1 1 1], 0.1); % 0.1s sampling time
To resample to a different sampling time, use d2dOptions to create the option set.
opts = d2dOptions('Method', 'tustin', 'PrewarpFrequency', 20);
h2 = d2d(h1, 0.05, opts);You can use opts to resample additional models using the same options.

Learn more about resources for designing, testing, and implementing control systems.
Get free kit| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |