Subtraction(Dataset2D, Dataset2D)

Performs a subtraction operation on the y-values of the subtrahend from the minuend and returns the result as a new dataset. The resultant dataset contains the intersection of x-values from all the input datasets and the subtraction of the corresponding y-values. (There is no interpolation done for any missing y-values.) If all the input datasets are of the same Quantity type, internal unit conversions are done if needed, and the resultant dataset will also be of the same Quantity type. If any of the input datasets have different Quantity types, no unit conversions are attempted, and the resultant dataset will be Dimensionless. An ArgumentException is thrown if either one of the datasets is invalid. An InvalidOperationException is thrown if there is no intersection between the x-values of the input datasets.

Declaration Syntax

public static Dataset2D Subtraction(Dataset2D minuend, Dataset2D subtrahend)

Parameters

minuend(Dataset2D)

No details are provided for this entry.

subtrahend(Dataset2D)

No details are provided for this entry.