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 SiteData object.

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

Parameters

value TOther

The value to subtract.

Returns

SiteData<T>

A new SiteData 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 SiteData object.

Subtract<TOther>(SiteData<TOther>)

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

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

Parameters

other SiteData<TOther>

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

Returns

SiteData<T>

A new SiteData 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 SiteData object being operated on.