import "gonum.org/v1/gonum/mat"
func (m *Dense) Dims() (r, c int)
Dims returns the number of rows and columns in the matrix.
For example,
package main
import (
"fmt"
"gonum.org/v1/gonum/mat"
)
func main() {
row1 := []float64{1, 2, 3}
row2 := []float64{4, 5, 6}
row3 := []float64{7, 8, 9}
row4 := []float64{10, 11, 12}
A := mat.NewDense(4, 3, nil)
A.SetRow(0, row1)
A.SetRow(1, row2)
A.SetRow(2, row3)
A.SetRow(3, row4)
fmt.Printf("A matrix:
%v
", mat.Formatted(A, mat.Prefix(""), mat.Excerpt(0)))
//Get the dimensions of the matrix A
rows, cols := A.Dims()
fmt.Println("A: rows: ", rows)
fmt.Println("A: cols: ", cols)
}
Output:
A matrix:
⎡ 1 2 3⎤
⎢ 4 5 6⎥
⎢ 7 8 9⎥
⎣10 11 12⎦
A: rows: 4
A: cols: 3