Vector<T>.Elementwise Pow In Place Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
| Elementwise | Raises the elements of a vector in-place to a constant power. |
| Elementwise | Raises the elements of a vector in-place to a constant power. |
| Elementwise | Raises this vector in-place element-wise by another vector. |
| Elementwise | Raises this vector in-place element-wise by another vector. |
ElementwisePowInPlace(Int32)
Raises the elements of a vector in-place to a constant power.
public Vector<T> ElementwisePowInPlace(
int exponent
)Parameters
- exponent Int32
- A number.
Return Value
Vector<T>A vector whose elements are the corresponding elements of the vector raised to the power exponent.
ElementwisePowInPlace(T)
Raises the elements of a vector in-place to a constant power.
public Vector<T> ElementwisePowInPlace(
T exponent
)Parameters
- exponent T
- A number.
Return Value
Vector<T>A vector whose elements are the corresponding elements of the vector raised to the power exponent.
ElementwisePowInPlace(Vector<T>)
Raises this vector in-place element-wise by another vector.
public virtual Vector<T> ElementwisePowInPlace(
Vector<T> exponent
)Parameters
Return Value
Vector<T>A reference to this instance.
Exceptions
| Argument | exponent is null. |
| Dimension | The size of exponent does not equal the size of this instance. |
ElementwisePowInPlace(Vector<Int32>)
Raises this vector in-place element-wise by another vector.
public virtual Vector<T> ElementwisePowInPlace(
Vector<int> exponent
)Parameters
Return Value
Vector<T>A reference to this instance.
Exceptions
| Argument | exponent is null. |
| Dimension | The size of exponent does not equal the size of this instance. |