integrate_funct_1d🔗
Short description🔗
integrate_funct_1d — Compute the positive and negative areas of a function.
Signature🔗
integrate_funct_1d( function_1d Function, out number Positive, out number Negative )
Description🔗
integrate_funct_1d integrates the function Function
(see create_funct_1d_array and create_funct_1d_pairs)
and returns the integral of the positive and negative parts of the
function in Positive and Negative, respectively.
Hence, the integral of the function is the difference
Positive - Negative. The integration is done on
the interval on which the function is defined. For the integration,
the function is interpolated linearly.
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
Parameters🔗
Function (input_control) function_1d → (real)
Input function.
Positive (output_control) number → (real)
Area under the positive part of the function.
Negative (output_control) number-array → (real)
Area under the negative part of the function.
Combinations with other operators🔗
Module🔗
Foundation