Elementary Functions

From LIBISIS
Revision as of 14:52, 17 March 2008 by Dean Whittaker (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The elementary functions are those which act on all the signal data contained in an IXTdataset_1d or IXTdataset_2d.

These functions are

>> wnew = log(w) 
>> wnew = exp(w)
>> wnew = sin(w)
>> wnew = cos(w)
>> wnew = tan(w)
>> wnew = sinh(w)
>> wnew = cosh(w)
>> wnew = tanh(w)

where w is an IXTdataset_1d or IXTdataset_2d. Here the operation is performed on every signal value in the dataset.

Arrays of Datasets

If an array is given, then the operation is performed on each member of the array in turn.


example:

>> wnew = exp(w)


will be handled as

wnew(i).signal(j) = exp(w(i).signal(j))