fastmatrix
Lightweight C++ library for linear algebra
File Explorer
- bench.cpp
- CMakeLists.txt
- timer.h
- fastmatrix.hpp
- .clang-format
- .gitattributes
- .gitignore
- CMakeLists.txt
- Doxyfile
- README.md
- tests.cpp
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
doxygen
View Details ▼
doxygen
A documentation system for various programming languages.
doxygen
Generate documentation, using `Doxyfile` as configuration file if it exists:
doxygen -g
Generate a default template configuration file `Doxyfile`:
doxygen -g {{path/to/config_file}}
Generate a template configuration file:
