-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Alberto Morcillo Sanz edited this page Mar 29, 2024
·
4 revisions
Tensor algebra library in a single header file in C11 for graphics programming
, machine and deep learning
and physics
.
-
Vectors, matrices and higher rank tensors.
-
Linear algebra and tensor algebra operations.
-
Pure C code, easy to integrate in C++ or other languajes using bindings.
-
Only one header file.
Still under development
In order to create a vector of n elements call create_vector(n)
which returns Vector*
Vector* u = create_vector(3);
set_value(u, 1.0, 0);
set_value(u, 2.0, 1);
set_value(u, 3.0, 2);
destroy_tensor(u);