Table of Contents

Method Divide

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

Divide(T)

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

public SiteData<double> Divide(T value)

Parameters

value T

The divisor value.

Returns

SiteData<double>

A new SiteData that contains the results.

Divide(SiteData<T>)

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

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

Parameters

other SiteData<T>

The other SiteData<T> that contains the divisors.

Returns

SiteData<double>

A new SiteData that contains the results.