valvector_pow

View page source

The valvector Pow Function

Syntax

z = CppAD::pow ( x , y )

x

The argument x is a const valvector that is passed by reference.

y

The argument y is a const valvector that is passed by reference. If the size of x is not one, and the size of y is not one, the size of x and y must be equal.

z

The result z is a valvector with size equal to the maximum of the size of x and the size of y .

Example

The file valvector_pow.cpp is an example and test of the valvector pow function.