Files
external-snapshotter/vendor/gonum.org/v1/gonum/lapack/gonum/dlas2.go
xiangqian 728e29aa7e 1. update clientset, deepcopy using code-generator
2. add a dummy file tools.go to force "go mod vendor" to see
code-generator as dependencies
3. add a script to update CRD
4. add a README to document CRD updating steps
run go mod tidy
update README
2019-12-04 14:40:46 -08:00

44 lines
1.2 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Copyright ©2015 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gonum
import "math"
// Dlas2 computes the singular values of the 2×2 matrix defined by
// [F G]
// [0 H]
// The smaller and larger singular values are returned in that order.
//
// Dlas2 is an internal routine. It is exported for testing purposes.
func (impl Implementation) Dlas2(f, g, h float64) (ssmin, ssmax float64) {
fa := math.Abs(f)
ga := math.Abs(g)
ha := math.Abs(h)
fhmin := math.Min(fa, ha)
fhmax := math.Max(fa, ha)
if fhmin == 0 {
if fhmax == 0 {
return 0, ga
}
v := math.Min(fhmax, ga) / math.Max(fhmax, ga)
return 0, math.Max(fhmax, ga) * math.Sqrt(1+v*v)
}
if ga < fhmax {
as := 1 + fhmin/fhmax
at := (fhmax - fhmin) / fhmax
au := (ga / fhmax) * (ga / fhmax)
c := 2 / (math.Sqrt(as*as+au) + math.Sqrt(at*at+au))
return fhmin * c, fhmax / c
}
au := fhmax / ga
if au == 0 {
return fhmin * fhmax / ga, ga
}
as := 1 + fhmin/fhmax
at := (fhmax - fhmin) / fhmax
c := 1 / (math.Sqrt(1+(as*au)*(as*au)) + math.Sqrt(1+(at*au)*(at*au)))
return 2 * (fhmin * c) * au, ga / (c + c)
}