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
Declaration Syntax
public static Dataset2D Multiplication(Dataset2D dataset_1, Dataset2D dataset_2, params Dataset2D[] extra_datasets)
Parameters
- dataset_1(Dataset2D)
No details are provided for this entry.
- dataset_2(Dataset2D)
No details are provided for this entry.
- extra_datasets(Dataset2D[])
No details are provided for this entry.