Table of Contents

Method Power

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

Power<TOther>(TOther)

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

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

Parameters

value TOther

The value to use as the power.

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.

Power<TOther>(SiteData<TOther>)

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

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

Parameters

other SiteData<TOther>

The other SiteData<T> that contains power values.

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.