mirror of
https://github.com/gonum/gonum.git
synced 2025-10-05 07:06:54 +08:00
all: run gofmt and generate all packages
Changes made in dsp/fourier/internal/fftpack break the formatting used there, so these are reverted. There will be complaints in CI. [git-generate] gofmt -w . go generate gonum.org/v1/gonum/blas go generate gonum.org/v1/gonum/blas/gonum go generate gonum.org/v1/gonum/unit go generate gonum.org/v1/gonum/unit/constant go generate gonum.org/v1/gonum/graph/formats/dot go generate gonum.org/v1/gonum/graph/formats/rdf go generate gonum.org/v1/gonum/stat/card git checkout -- dsp/fourier/internal/fftpack
This commit is contained in:
@@ -65,8 +65,10 @@ func dpbtrfTest(t *testing.T, impl Dpbtrfer, uplo blas.Uplo, n, kd int, ldab int
|
||||
}
|
||||
|
||||
// dsbmm computes a symmetric band matrix A
|
||||
// A = Uᵀ*U if uplo == blas.Upper,
|
||||
// A = L*Lᵀ if uplo == blas.Lower,
|
||||
//
|
||||
// A = Uᵀ*U if uplo == blas.Upper,
|
||||
// A = L*Lᵀ if uplo == blas.Lower,
|
||||
//
|
||||
// where U and L is an upper, respectively lower, triangular band matrix
|
||||
// stored on entry in ab. The result is stored in-place into ab.
|
||||
func dsbmm(uplo blas.Uplo, n, kd int, ab []float64, ldab int) {
|
||||
|
Reference in New Issue
Block a user