Equana

Function Reference

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

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.array

Create an NDArray from a nested array or flat array with shape.

Syntax

np.array(data, shape?, options?)

Description

Create an NDArray from a nested array or flat array with shape.

Parameters

NameDescription
data- Nested array or flat array of numbers
shape(optional)- Optional shape (inferred from nested structure if not provided)
options(optional)- Optional configuration (dtype)

Returns

Promise<NDArray>