| 1234567891011121314 |
- // 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"
- // Dlapy2 is the LAPACK version of math.Hypot.
- //
- // Dlapy2 is an internal routine. It is exported for testing purposes.
- func (Implementation) Dlapy2(x, y float64) float64 {
- return math.Hypot(x, y)
- }
|