Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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