ml-signal-processing
    Preparing search index...

    Interface YFunctionOptions

    interface YFunctionOptions {
        function?: string;
    }
    Index

    Properties

    Properties

    function?: string

    Will apply a function on the Y variable on each element of the array described as a string In front of sequence of lowercase we will add 'Math.'. This allows to write sin(y) + cos(y) and it will be replace internally by (y) => (Math.sin(y) + Math.cos(y))

    ''