Method Divide
- Assembly
- NationalInstruments.SemiconductorTestLibrary.Abstractions.dll
Divide(T)
Performs divide operation between every element in current SiteData object and the given value.
public SiteData<double> Divide(T value)Parameters
valueT-
The divisor value.
Returns
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.
Divide<TOther, TResult>(TOther)
Performs divide operation between every element in current SiteData object and the given value.
public SiteData<TResult> Divide<TOther, TResult>(TOther value)Parameters
valueTOther-
The divisor value.
Returns
- SiteData<TResult>
-
A new SiteData object that contains the results.
Type Parameters
TOtherTResult-
The output type of the result from the operation. The type must be an array of equal dimensions as the underlying type, T, of current SiteData object.
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.
Divide(SiteData<T>)
Performs divide operation between every element in current SiteData object and the given SiteData object.
public SiteData<double> Divide(SiteData<T> other)Parameters
otherSiteData<T>-
The other NationalInstruments.SemiconductorTestLibrary.DataAbstraction.SiteData`1 that contains the divisors.
Returns
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.
Divide<TOther, TResult>(SiteData<TOther>)
Performs divide operation between every element in current SiteData object and the given SiteData object.
public SiteData<TResult> Divide<TOther, TResult>(SiteData<TOther> other)Parameters
otherSiteData<TOther>-
The other NationalInstruments.SemiconductorTestLibrary.DataAbstraction.SiteData`1 that contains the divisors.
Returns
- SiteData<TResult>
-
A new SiteData object that contains the results.
Type Parameters
TOtherTResult-
The output type of the result from the operation. The type must be an array of equal dimensions as the underlying type, T, of current SiteData object.
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.