forked from leto/LeMA
Fixed header file name in readme
This commit is contained in:
parent
2451068777
commit
19167552ce
10
README.md
10
README.md
@ -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
|
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
|
```cpp
|
||||||
#include "lema.h"
|
#include "matrices.h"
|
||||||
```
|
```
|
||||||
|
|
||||||
That's it! You're ready to use Lema.
|
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
|
#### Creating a Matrix
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
#include "lema.h"
|
#include "matrices.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
@ -44,7 +44,7 @@ int main() {
|
|||||||
#### Matrix Addition
|
#### Matrix Addition
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
#include "lema.h"
|
#include "matrices.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
@ -64,7 +64,7 @@ int main() {
|
|||||||
#### Matrix Multiplication
|
#### Matrix Multiplication
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
#include "lema.h"
|
#include "matrices.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user