Welcome to DHL-LinAlg documentation!
DHL-LinAlg is a simple linear algebra implementation in C++ providing classes such as Vector and Matrix. All classes are binded into python.
Quickstart
Installation can be done as follows:
pip install dhllinalg
Afterwards you can import the library in python
from dhllinalg.bla import Matrix
m = Matrix(10,10)
for i in range(10):
for j in range(10):
m[i,j] = i + 2 * j
print(m)
Contents
Contents:
Information: