mirror of
https://github.com/gonum/gonum.git
synced 2025-10-15 11:40:45 +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:
@@ -28,13 +28,16 @@ type JacobianSettings struct {
|
||||
// The Jacobian matrix J is the matrix of all first-order partial derivatives of f.
|
||||
// If f maps an n-dimensional vector x to an m-dimensional vector y = f(x), J is
|
||||
// an m×n matrix whose elements are given as
|
||||
// J_{i,j} = ∂f_i/∂x_j,
|
||||
//
|
||||
// J_{i,j} = ∂f_i/∂x_j,
|
||||
//
|
||||
// or expanded out
|
||||
// [ ∂f_1/∂x_1 ... ∂f_1/∂x_n ]
|
||||
// [ . . . ]
|
||||
// J = [ . . . ]
|
||||
// [ . . . ]
|
||||
// [ ∂f_m/∂x_1 ... ∂f_m/∂x_n ]
|
||||
//
|
||||
// [ ∂f_1/∂x_1 ... ∂f_1/∂x_n ]
|
||||
// [ . . . ]
|
||||
// J = [ . . . ]
|
||||
// [ . . . ]
|
||||
// [ ∂f_m/∂x_1 ... ∂f_m/∂x_n ]
|
||||
//
|
||||
// dst must be non-nil, the number of its columns must equal the length of x, and
|
||||
// the derivative order of the formula must be 1, otherwise Jacobian will panic.
|
||||
|
Reference in New Issue
Block a user