↓ 20 callersTypeAliasCreationCreation is a singular non-symmetric matrix given by A[i,j] = i, if j == i-1, = 0, otherwise. For example, for n=5, [ . . . . . ] [ 1 . . . . ] A =
lib/gonum/lapack/testlapack/test_matrices.go:173
↓ 20 callersTypeAliasDownshiftDownshift is a non-singular upper Hessenberg matrix given by A[i,j] = 1, if (i-j+n)%n == 1, = 0, otherwise. For example, for n=5, [ . . . . 1 ] [ 1
lib/gonum/lapack/testlapack/test_matrices.go:228
↓ 16 callersTypeAliasClementClement is a generally non-symmetric matrix given by A[i,j] = i+1, if j == i+1, = n-i, if j == i-1, = 0, otherwise. For example, for n=5, [ . 1 .
lib/gonum/lapack/testlapack/test_matrices.go:138
↓ 8 callersTypeAliasDiagonalDiagonal is a diagonal matrix given by A[i,j] = i+1, if i == j, = 0, otherwise. For example, for n=5, [ 1 . . . . ] [ . 2 . . . ] A = [ . . 3 . .
lib/gonum/lapack/testlapack/test_matrices.go:198