Table of Contents

Method Multiply

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

Multiply(T)

Performs multiply operation on every element in current PinSiteData and the given value.

public PinSiteData<T> Multiply(T value)

Parameters

value T

The multiplier.

Returns

PinSiteData<T>

A new PinSiteData that contains the multiply results.

Multiply(SiteData<T>)

Performs multiply operation on every element in current PinSiteData and the given SiteData.

public PinSiteData<T> Multiply(SiteData<T> other)

Parameters

other SiteData<T>

The other SiteData<T> that contains multipliers.

Returns

PinSiteData<T>

A new PinSiteData that contains the multiply results.

Multiply(PinSiteData<T>)

Performs multiply operation on every element in current PinSiteData and the given PinSiteData.

public PinSiteData<T> Multiply(PinSiteData<T> other)

Parameters

other PinSiteData<T>

The other PinSiteData<T> that contains multipliers.

Returns

PinSiteData<T>

A new PinSiteData that contains the multiply results.