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
value
TThe 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
value
TOtherThe divisor value.
Returns
- SiteData<TResult>
A new SiteData object that contains the results.
Type Parameters
TOther
TResult
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
other
SiteData<T>The other SiteData<T> 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
other
SiteData<TOther>The other SiteData<T> that contains the divisors.
Returns
- SiteData<TResult>
A new SiteData object that contains the results.
Type Parameters
TOther
TResult
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.