Table of Contents

Method Divide

Namespace
NationalInstruments.SemiconductorTestLibrary.DataAbstraction
Assembly
NationalInstruments.SemiconductorTestLibrary.Abstractions.dll

Divide(T)

Performs divide operation between every element in current PinSiteData and the given value.

public PinSiteData<double> Divide(T value)

Parameters

value T

The divisor value.

Returns

PinSiteData<double>

A new PinSiteData that contains the results.

Divide(SiteData<T>)

Performs divide operation between every element in current PinSiteData and the given SiteData.

public PinSiteData<double> Divide(SiteData<T> other)

Parameters

other SiteData<T>

The other SiteData<T> that contains the divisors.

Returns

PinSiteData<double>

A new PinSiteData that contains the results.

Divide(PinSiteData<T>)

Performs divide operation between every element in current PinSiteData and the given PinSiteData.

public PinSiteData<double> Divide(PinSiteData<T> other)

Parameters

other PinSiteData<T>

The other PinSiteData<T> that contains the divisors.

Returns

PinSiteData<double>

A new PinSiteData that contains the results.