Home > Objects > @iFunc > set.m

iFit/set

PURPOSE ^

[s,...] = set(s, 'PropertyName', Propertyvalue, ...) : set iFunc properties

SYNOPSIS ^

function this = set(this,varargin)

DESCRIPTION ^

 [s,...] = set(s, 'PropertyName', Propertyvalue, ...) : set iFunc properties

   @iFunc/set function to set iFunc properties.
   set(s, 'PropertyName', Propertyvalue, ...}) 
     sets values into given property names for the iFunc object s.
     The PropertyName can be any iFunc object field, or a model parameter name
       or 'p' to designate the vector of parameter values.
   set(s, 'Struct.Field', ...)
     sets values from given structure fields into the iFunc object s.
   set(s, CellNames, CellValues, ...)
     sets values from given cells into the iFunc object s.
   set(s) indicates the signification of the iFunc base properties
   The input iFunc object is updated if no output argument is specified.

   A faster syntax for the 'set' method is: s.PropertyName = PropertyValue
   To set a constraint on a model parameter, use:
     s.parameter='fix'     % to lock its value during a fit process
     s.parameter='clear'   % to unlock value during a fit process
     s.parameter=[min max] % to bound value
     s.parameter=[nan nan] % to remove bound constraint
     s.parameter=''        % to remove all constraints on 'parameter'
     s.Constraint=''       % to remove all constraints

   When the Property is a model parameter name 

 ex      : set(iFunc,'Title','A nice Title')

 Version: Nov. 26, 2018
 See also iFunc, iFunc/get, iFunc/setalias, iFunc/setaxis

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Mon 26-Nov-2018 15:08:42 by m2html © 2005. iFit (c) E.Farhi/ILL EUPL 1.1