Pascal-Institute / komat

Matrix library (Linear Algebra)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

komat

0. How to import? (Please Check Latest Version)

build.gradle.kts

repositories {
    maven{
        url = uri("https://jitpack.io")
    }
}

dependencies {
    implementation ("com.github.Pascal-Institute:komat:1.8.7")
}

1. How to use?

//Vect : 1D
//Mat : 2D 
val mat = mat{
    v(1,2,3)
    v(4,5,6)
}

//Cube : 3D
val cube = cube{
    +mat
    +mat
    +mat
}

//Hyper : 4D

About

Matrix library (Linear Algebra)

License:MIT License


Languages

Language:Kotlin 100.0%