Structs§
- Exception
- Exception thrown from an
extern "C++"
function. - Matrix
F64 - A 2D matrix type whose element type is f64.
- Vector
F64 - A vector type whose element type is f64.
Functions§
- new_
matrix_ ⚠from_ ptr - Creates a new
n x m
MatrixF64
from a pointer to a row-major array and its shape. Note that it copies the data. - new_
vector - Creates a new zero-filled
VectorF64
of lengthn
. - new_
vector_ ⚠from_ ptr - Creates a new
VectorF64
from a pointer to the array and its length. Note that it copies the data. - solve_
quadprog - Sovles a quadratic programming problem.
- vector_
index ⚠ - Performs indexing operation on the vector.