関数の値Function values
これらの関数を使用すると、他の M 関数の作成と呼び出しを行えます。These functions create and invoke other M functions.
関数Function
関数Function | DescriptionDescription |
---|---|
Function.FromFunction.From | 単項の関数 function を取得し、functionType 型の新しい関数を作成します。これは、その引数からリストを構築して、それを function に渡します。Takes a unary function function and creates a new function with the type functionType that constructs a list out of its arguments and passes it to function . |
Function.InvokeFunction.Invoke | 指定された値を使用して特定の関数を呼び出し、結果を返します。Invokes the given function using the specified and returns the result. |
Function.InvokeAfterFunction.InvokeAfter | 期間 delay が経過した後で function を呼び出した結果を返します。Returns the result of invoking function after duration delay has passed. |
Function.IsDataSourceFunction.IsDataSource | 関数がデータ ソースと見なされるかどうかを返します。Returns whether or not function is considered a data source. |
Function.ScalarVectorFunction.ScalarVector | 1 行の引数で vectorFunction を呼び出し、その 1 つの出力を返す scalarFunctionType 型のスカラー関数を返します。Returns a scalar function of type scalarFunctionType that invokes vectorFunction with a single row of arguments and returns its single output. |