package
0.0.0-20240618132903-a4d355caeba1
Repository: https://github.com/kumaya/golang-programs.git
Documentation: pkg.go.dev

# Functions

Add adds two matrices if their dimensions are the same It returns a new matrix with the addition results, and the validity of the operation.
New creates a new matrix with r rows and c columns.
String returns a string representation of the matrix.
Subtract subtracts two matrices, m2 from m1, if their dimensions are the same It returns a new matrix with the addition results, and the validity of the operation.

# Structs

Matrix is a slice of slice of int of a specified size.