MATLAB CURVE FITTING TOOLBOX - RELEASE NOTES Guide de l'utilisateur Page 192

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 216
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 191
get
4-116
4get
Purpose Return properties for a fit options object
Syntax get(opts)
a = get(opts)
a = get(opts,'PropertyName')
Arguments
Description
get(opts) returns all property names and their current values to the
command line for the fit options object
opts.
a = get(opts) returns the structure a where each field name is the name of a
property of
opts, and each field contains the value of that property.
a = get(opts,'PropertyName') returns the value of the property specified by
PropertyName for opts. If PropertyName is replaced by a cell array of strings
containing property names,
get returns a cell array of values to a.
Example Create a fit options object for a second-degree polynomial, and return the
current property values to the command line.
opts = fitoptions('poly2');
get(opts)
ans =
Normalize: 'off'
Exclude: []
Weights: []
Method: 'LinearLeastSquares'
Robust: 'Off'
Lower: []
Upper: []
See Also set
opts
A fit options object.
PropertyName The name of a fit options property, or a cell array of
property names.
a A structure or cell array of fit options property values.
Vue de la page 191
1 2 ... 187 188 189 190 191 192 193 194 195 196 197 ... 215 216

Commentaires sur ces manuels

Pas de commentaire