Commit Graph

34 Commits

Author SHA1 Message Date
Dan Kortschak
5f0141ca4c 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
2022-08-06 07:05:17 +09:30
Dan Kortschak
d8ad7756b6 all: fix spelling and typos 2022-03-14 21:32:06 +10:30
Vladimir Chalupecky
b4dd4cfbca mat: remove from docs references to "matrix" package 2021-05-13 09:37:55 +02:00
Vladimir Chalupecky
41e3de04ce mat: document Normer 2021-05-13 09:37:55 +02:00
Vladimir Chalupecky
3de5d6c644 mat: return ErrZeroLength when size is zero and document it 2021-05-13 09:37:55 +02:00
Vladimir Chalupecky
e99241cb7d mat: remove unused BandWidther interface 2021-05-12 12:37:43 +02:00
Vladimir Chalupecky
7d9d51f30f mat: add DiagDense.Norm 2021-05-12 10:57:51 +02:00
Vladimir Chalupecky
544b314c6d mat: add Normer interface and use it in Norm 2021-05-11 16:23:27 +02:00
Vladimir Chalupecky
49182b1e8f mat: add support for tridiagonal matrices 2021-04-09 13:42:26 +02:00
Vladimir Chalupecky
4b187d6cf7 mat: remove mention of "induced" from mat.Norm docs 2020-11-02 12:02:27 +01:00
Dan Kortschak
da72779e7a floats/scalar: new package containing non-vector functions from floats 2020-08-07 07:59:02 +09:30
Marco Leogrande
2f6484adbf mat: fix typos 2020-05-25 14:41:07 +09:30
Dan Kortschak
960a37950c mat: document that Trace will use a Tracer's implementation 2020-02-27 06:58:45 +10:30
Vladimír Chalupecký
af3666d0f9 mat: add VecDense and RawVectorer cases to untransposeExtract (#1186)
* mat: add VecDense.SetRawVector
* mat: add VecDense and RawVectorer cases to untransposeExtract
* mat: add comments to VecDense.{RawVector,SetRawVector}
2019-11-28 00:24:04 +01:00
Brendan Tracey
975d99cd20 mat,all: Rename IsZero to IsEmpty (#1088)
This avoids the confusion between Zero() and IsZero() which sounds like they should be related
to one another but are not. This makes IsEmpty the counterpart to Reset. Add check for Zero in allMatrix

Fixes #1083.
Updates #1081.
2019-09-15 13:53:29 +01:00
Brendan Tracey
cd52c4d030 mat: Expose ReuseAs method to help resizing (#1082)
* mat: Expose ReuseAs method to help resizing

Fixes #963
2019-09-14 09:17:29 +01:00
Dan Kortschak
17ea55aedb blas,lapack: clean up docs and comments
Apply (with manual curation after the fact):
* s/^T/U+1d40/g
* s/^H/U+1d34/g
* s/, {2,3}if / $1/g

Some additional manual editing of odd formatting.
2019-09-06 20:02:29 +09:30
Dan Kortschak
e67905e3d2 mat: panic with the advertised value for invalid norm order 2019-08-05 14:27:18 +09:30
Dan Kortschak
c5f01565d8 mat: rename Cloner=>ClonerFrom and Clone=>CloneFrom 2019-06-08 21:20:22 +09:30
jonreiter@gmail.com
5f9e0658f3 mat: add fast paths for Sum with SymDense, TriDense and VecDense 2019-04-03 19:38:10 +10:30
Brendan Tracey
9a0642d3dd mat: implement helper routines for type extraction and update Trace to use an interface (#932)
* Implement helper routines for type extraction and update Trace to use an interface.

Updates #929.
2019-03-31 09:26:36 +01:00
Brendan Tracey
572d9101fe blas64: add length field N to Vector
blas64: add length field N to Vector

Alongside, fix the implementation of mat.VecDense and mat.Diagonal, as well as other changes needed to fix this change.

Fixes #736.
2018-12-10 08:36:04 +00:00
Brendan Tracey
32b7bcde45 mat: Add TriBanded interface and TriBandDense type (#693)
* mat: Add TriBanded interface and TriBandDense type
2018-11-25 08:26:55 +00:00
Vladimir Chalupecky
c0cf10d539 lapack: rename NormFrob to Frobenius 2018-10-17 15:04:24 +02:00
kortschak
805531d142 all: change capitalization of gonum in license header 2017-11-02 06:54:08 +10:30
Spencer Lyon
020a1c5f72 mat: fix Row doc comment 2017-10-02 12:30:54 -04:00
James Bowman
e01a71d4d5 mat: make RowView and ColView return Vector type and add RowViewOf and ColViewOf
Also change Dot signature to accept Vector parameters.
2017-09-02 06:55:38 +09:30
kortschak
9342bd1d5a mat: factor condition code into factorising types 2017-08-06 07:04:36 +09:30
kortschak
862a4c5a4f mat: rename Vector->VecDense 2017-07-31 09:59:22 +09:30
kortschak
ffd939f8ca mat: add NonZeroDoer interfaces and implementations
Also clean up some documentation and missing type checks related to
tests for NonZeroDoers.
2017-07-27 10:42:26 +09:30
Dan Kortschak
c08ba23280 mat: add band matrix types 2017-07-09 07:43:10 +09:30
kortschak
33b5a66ba7 mat: remove View* methods 2017-06-17 06:45:53 +09:30
kortschak
6143493e56 mat: s/mat64/mat/g 2017-06-16 16:23:05 +09:30
Brendan Tracey
3fa9374bd4 matrix: rename matrix to mat, and merge with mat64 and cmat128.
This merges the three packages, matrix, mat64, and cmat128. It then renames this big package to mat. It fixes the import statements and corresponding code
2017-06-13 10:26:10 -06:00