Home > Objects > @iFunc > plus.m

iFit/plus

PURPOSE ^

c = plus(a,b) : computes the sum of iFunc objects

SYNOPSIS ^

function c = plus(a,b)

DESCRIPTION ^

 c = plus(a,b) : computes the sum of iFunc objects

   @iFunc/plus (+) function to compute the sum of functions
     when one of the argument is a character string, it is used as-is in the 
     operator expression. When this string also contains an equal or ';'
     character, the argument is prepended/appended to the Expression:
       model = gauss + 'b'
     adds a Gaussian with 'b' (you then need to define 'b' somewhere else, for 
     instance as a global variable in Constraint: model.Constraint = 'global b'
       model = gauss + 'disp(''This was the Gaussian !'');'
     adds some code after the Expression.
       model = 'disp(''There comes the Gaussian !'');' + gauss
     adds some code before the Expression.

 input:  a: object or array (iFunc or numeric or char)
         b: object or array (iFunc or numeric or char)
 output: c: object or array (iFunc)
 ex:     c=a+1;

 Version: Nov. 26, 2018
 See also iFunc, iFunc/minus, iFunc/plus, iFunc/times, iFunc/rdivide

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