- `C = power (A, B)`

Devuelve la operación elemento por elemento de `A` elevada a la potencia de
`B`.

Esta función y `A .^ B` son equivalentes.

Si son posibles varios resultados complejos, devuelva el que tenga el argumento
(ángulo) no negativo más pequeño. Utilice `realpow`, `realsqrt`, `cbrt` o
`nthroot` si prefiere un resultado real.

Véase también: `mpower`, `realpow`, `realsqrt`, `cbrt`, `nthroot`.

### Referencias

- https://www.mathworks.com/help/matlab/ref/power.html
- https://octave.sourceforge.io/octave/function/power.html
- https://mathworld.wolfram.com/Power.html
- https://es.wikipedia.org/wiki/Potenciaci%C3%B3n
