Table of Contents

Method Power

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

Power<TOther>(TOther)

Raises every element in current PinSiteData object to the power of the given value.

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

Parameters

value TOther

The value to use as the power.

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.

Power<TOther>(SiteData<TOther>)

Raises every element in current PinSiteData object to the power of every element in given SiteData object.

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

Parameters

other SiteData<TOther>

The other SiteData<T> that contains power values.

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.

Power<TOther>(PinSiteData<TOther>)

Raises every element in current PinSiteData object to the power of every element in given PinSiteData object.

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

Parameters

other PinSiteData<TOther>

The other PinSiteData<T> that contains power values.

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.