Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 494 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 494 Bytes

Minimal Matrix

Simple and fast library for matrix operations for C language. Ideal for performance applications, embedded systems and machine learning.

The matrices are represented by a data structure containing the number of rows, number of columns and the data.

compile:

For run gcc -Wall -Wextra -std=c99 -Iinclude -o output/main.exe src/main.c src/minMatrix.c

For debug gcc -Wall -Wextra -std=c99 -g -Iinclude -o output/main.exe src/main.c src/minMatrix.c

run:

./output/main.exe