Method Multiply
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Abstractions.dll
Multiply<TOther>(TOther)
Performs multiply operation on every element in current SiteData object and the given value.
public SiteData<T> Multiply<TOther>(TOther value)
Parameters
value
TOtherThe multiplier.
Returns
- SiteData<T>
A new SiteData object that contains the multiply results.
Type Parameters
TOther
Remarks
This method can accept either a scalar or an array as the input value, but the value must be of the same underlying type, T, as the SiteData object.
Multiply<TOther>(SiteData<TOther>)
Performs multiply operation on every element in current SiteData object and the given SiteData object.
public SiteData<T> Multiply<TOther>(SiteData<TOther> other)
Parameters
other
SiteData<TOther>The other SiteData<T> that contains multipliers.
Returns
- SiteData<T>
A new SiteData object that contains the multiply results.
Type Parameters
TOther
Remarks
This method can accept a SiteData object of either a scalar or an array type as the input value, but the underlying type of the input value must be of the same underlying type, T, as the SiteData object being operated on.