Table of Contents

Method Subtract

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

Subtract<TOther>(TOther)

Subtracts the given value from every element in current PinSiteData object.

public PinSiteData<T> Subtract<TOther>(TOther value)

Parameters

value TOther

The value to subtract.

Returns

PinSiteData<T>

A new PinSiteData object that contains the 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 PinSiteData object.

Subtract<TOther>(SiteData<TOther>)

Subtracts every element in given SiteData object from every element in current PinSiteData object.

public PinSiteData<T> Subtract<TOther>(SiteData<TOther> other)

Parameters

other SiteData<TOther>

The other SiteData<T> that contains values to subtract.

Returns

PinSiteData<T>

A new PinSiteData object that contains the 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 PinSiteData object.

Subtract<TOther>(PinSiteData<TOther>)

Subtracts every element in given PinSiteData object from every element in current PinSiteData object.

public PinSiteData<T> Subtract<TOther>(PinSiteData<TOther> other)

Parameters

other PinSiteData<TOther>

The other PinSiteData<T> that contains values to subtract.

Returns

PinSiteData<T>

A new PinSiteData object that contains the results.

Type Parameters

TOther

Remarks

This method can accept a PinSiteData 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 PinSiteData object being operated on.