chrissimpkins / vectora

A Rust library for n-dimensional vector computation with real and complex scalar data

Home Page:https://docs.rs/crate/vectora/latest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add M × N matrix:matrix addition support

chrissimpkins opened this issue · comments

Requirements:

  • left hand side and right hand side matrix column and row lengths must be the same

Properties:

  • commutative (A + B = B + A)
  • associative ((A + B) + C = A + (B + C))
  • additive identity with zero matrix (A + 0)
  • additive inverse (A + -A)