Registry / utility / gaussianlib

gaussianlib

JSON →
library2024-11-03vcpkgunverified

GaussianLib is a basic linear algebra C++ library for 2D and 3D applications.

vcpkg install gaussianlib
INSTALL
IMPORT
SIG · GAUSSIANLIB
G
gaussianlib
utilitycppv2024-11-03
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

gaussian/matrix.h
#include <gaussian/matrix.h>

Create a 3x3 matrix and compute its determinant.

#include "gaussian/matrix.h" #include <iostream> int main() { gaussian::Matrix<float> mat(3, 3); mat(0,0) = 1.0f; mat(1,1) = 2.0f; mat(2,2) = 3.0f; std::cout << "Matrix determinant: " << mat.Determinant() << '\n'; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2024-11-03latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources

No resource links recorded.

gaussianlib — pip install gaussianlib · libregistry