Dataset2D Operations.Multiplication(Dataset2D param1, Dataset2D param2, Dataset2D[] param3)

Performs a multiplication operation on the y-values (at each x-value) of the input datasets and returns the result as a new dataset. A minimum of two datasets are expected as input. Extra datasets can be provided optionally. The resultant dataset contains the intersection of x-values from all the input datasets and the multiplication 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, but the resultant dataset will be Dimensionless. (See documentation for more details) 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

Parameters

Return Value

Type: Dataset2D