Equana

Function Reference

Under the HoodFeaturesTutorialsDocs
Docs/Numerical Arrays (NumPy)/np.float_power

Packages

Core Functions
72 functions
Free
Linear Algebra
24 functions
Free
Fourier Analysis
14 functions
Free
Data Visualization
40 functions
Free
Polynomial Functions
100 functions
Free
Symbolic Mathematics
10 functions
Free
3D Visualization (VTK)
18 functions
Free
Sparse Matrices
25 functions
Free
Finite Element (MFEM)
407 functions
Free
Scientific Computing (SciPy)
74 functions
Free
Numerical Arrays (NumPy)
602 functions
Free
ODE Solvers
20 functions
Free
Symbolic Math (SymEngine)
159 functions
Free
Linear Algebra (Eigen)
247 functions
Free
Numerical Integration (QUADPACK)
25 functions
Free
Eigenvalue Solvers (ARPACK)
85 functions
Free
LAPACK/BLAS
98 functions
Free
Sparse Direct Solver (SuperLU)
123 functions
Free
Special Functions
85 functions
Free
Back to Numerical Arrays (NumPy)

np.float_power

First array elements raised to powers from second array, element-wise.

Syntax

np.float_power(x1, x2)

Description

First array elements raised to powers from second array, element-wise. Unlike power, float_power always returns float64 output. In numwasm, this is equivalent to power since we use float64 by default.

Parameters

NameDescription
x1NDArray
x2NDArray

Returns

NDArray