Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for archCbrt (0.34 sec)

  1. src/math/cbrt.go

    // Cbrt returns the cube root of x.
    //
    // Special cases are:
    //
    //	Cbrt(±0) = ±0
    //	Cbrt(±Inf) = ±Inf
    //	Cbrt(NaN) = NaN
    func Cbrt(x float64) float64 {
    	if haveArchCbrt {
    		return archCbrt(x)
    	}
    	return cbrt(x)
    }
    
    func cbrt(x float64) float64 {
    	const (
    		B1             = 715094163                   // (682-0.03306235651)*2**20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. src/math/stubs.go

    func archAtan2(y, x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchAtanh = false
    
    func archAtanh(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCbrt = false
    
    func archCbrt(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCos = false
    
    func archCos(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCosh = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top