Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for archAcos (0.19 sec)

  1. src/math/stubs.go

    //go:build !s390x
    
    // This is a large group of functions that most architectures don't
    // implement in assembly.
    
    package math
    
    const haveArchAcos = false
    
    func archAcos(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchAcosh = false
    
    func archAcosh(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchAsin = false
    
    func archAsin(x float64) float64 {
    	panic("not implemented")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/math/asin.go

    	}
    	return temp
    }
    
    // Acos returns the arccosine, in radians, of x.
    //
    // Special case is:
    //
    //	Acos(x) = NaN if x < -1 or x > 1
    func Acos(x float64) float64 {
    	if haveArchAcos {
    		return archAcos(x)
    	}
    	return acos(x)
    }
    
    func acos(x float64) float64 {
    	return Pi/2 - Asin(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. src/math/arith_s390x.go

    func atanhTrampolineSetup(x float64) float64
    func atanhAsm(x float64) float64
    
    const haveArchAcos = true
    
    func archAcos(x float64) float64
    func acosTrampolineSetup(x float64) float64
    func acosAsm(x float64) float64
    
    const haveArchAcosh = true
    
    func archAcosh(x float64) float64
    func acoshTrampolineSetup(x float64) float64
    func acoshAsm(x float64) float64
    
    const haveArchAsin = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  4. src/math/stubs_s390x.s

    	MOVD $·atanhAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·atanhAsm(SB)
    
    GLOBL ·atanhvectorfacility+0x00(SB), NOPTR, $8
    DATA ·atanhvectorfacility+0x00(SB)/8, $·atanhTrampolineSetup(SB)
    
    TEXT ·archAcos(SB), NOSPLIT, $0
    	MOVD ·acosvectorfacility+0x00(SB), R1
    	BR   (R1)
    
    TEXT ·acosTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  5. src/math/sinh.go

    }
    
    // Cosh returns the hyperbolic cosine of x.
    //
    // Special cases are:
    //
    //	Cosh(±0) = 1
    //	Cosh(±Inf) = +Inf
    //	Cosh(NaN) = NaN
    func Cosh(x float64) float64 {
    	if haveArchCosh {
    		return archCosh(x)
    	}
    	return cosh(x)
    }
    
    func cosh(x float64) float64 {
    	x = Abs(x)
    	if x > 21 {
    		return Exp(x) * 0.5
    	}
    	ex := Exp(x)
    	return (ex + 1/ex) * 0.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. src/math/acosh.go

    // Acosh returns the inverse hyperbolic cosine of x.
    //
    // Special cases are:
    //
    //	Acosh(+Inf) = +Inf
    //	Acosh(x) = NaN if x < 1
    //	Acosh(NaN) = NaN
    func Acosh(x float64) float64 {
    	if haveArchAcosh {
    		return archAcosh(x)
    	}
    	return acosh(x)
    }
    
    func acosh(x float64) float64 {
    	const Large = 1 << 28 // 2**28
    	// first case is special case
    	switch {
    	case x < 1 || IsNaN(x):
    		return NaN()
    	case x == 1:
    		return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/path-operation-advanced-configuration.md

    !!! warning "Advertencia"
        Si haces esto, debes asegurarte de que cada una de tus *funciones de las operaciones de path* tenga un nombre único.
    
        Incluso si están en diferentes módulos (archivos Python).
    
    ## Excluir de OpenAPI
    
    Para excluir una *operación de path* del esquema OpenAPI generado (y por tanto del la documentación generada automáticamente), usa el parámetro `include_in_schema` y asigna el valor como `False`;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jul 04 12:49:31 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. docs/es/docs/tutorial/index.md

    Funciona también como una referencia futura, para que puedas volver y ver exactamente lo que necesitas.
    
    ## Ejecuta el código
    
    Todos los bloques de código se pueden copiar y usar directamente (en realidad son archivos Python probados).
    
    Para ejecutar cualquiera de los ejemplos, copia el código en un archivo llamado `main.py`, y ejecuta `uvicorn` de la siguiente manera en tu terminal:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/form-validator/lang/es.js

    respuesta(s)",badAlphaNumeric:"El valor proporcionado solo debe contener caracteres alfanuméricos (a-z y números)",badAlphaNumericExtra:" y",wrongFileSize:"El archivo que está tratando de subir es demasiado grande (máx. %s)",wrongFileType:"Sólo los archivos del tipo %s están permitido",groupCheckedRangeStart:"Por favor, elija entre ",groupCheckedTooFewStart:"Por favor, elija al menos ",groupCheckedTooManyStart:"Por favor, elija un máximo de ",groupCheckedEnd:" ítem(s)",badCreditCard:"El número de tarjeta...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3K bytes
    - Viewed (0)
  10. src/math/sin.go

    }
    
    // Cos returns the cosine of the radian argument x.
    //
    // Special cases are:
    //
    //	Cos(±Inf) = NaN
    //	Cos(NaN) = NaN
    func Cos(x float64) float64 {
    	if haveArchCos {
    		return archCos(x)
    	}
    	return cos(x)
    }
    
    func cos(x float64) float64 {
    	const (
    		PI4A = 7.85398125648498535156e-1  // 0x3fe921fb40000000, Pi/4 split into three parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top