1
0
forked from leto/LeMA

Fixed header file name in readme

This commit is contained in:
Leto 2024-12-23 22:15:48 +01:00
parent 2451068777
commit 19167552ce

View File

@ -19,9 +19,9 @@ LeMA will eventually be used for graphical and machine learning usage in my othe
git clone https://git.letonet.fr/gitea_admin/lema.git
```
2. Include the `lema.h` file in your project.
2. Include the `matrices.h` file in your project.
```cpp
#include "lema.h"
#include "matrices.h"
```
That's it! You're ready to use Lema.
@ -31,7 +31,7 @@ That's it! You're ready to use Lema.
#### Creating a Matrix
```cpp
#include "lema.h"
#include "matrices.h"
#include <iostream>
int main() {
@ -44,7 +44,7 @@ int main() {
#### Matrix Addition
```cpp
#include "lema.h"
#include "matrices.h"
#include <iostream>
int main() {
@ -64,7 +64,7 @@ int main() {
#### Matrix Multiplication
```cpp
#include "lema.h"
#include "matrices.h"
#include <iostream>
int main() {