Crate matrix_basic

source ·
Expand description

This is a crate for very basic matrix operations with any type that supports addition, substraction, and multiplication. Additional properties might be needed for certain operations. I created it mostly to learn using generic types and traits.

Sayantan Santra (2023)

Structs

  • A generic matrix struct (over any type with addition, substraction and multiplication defined on it). Look at from to see examples.