Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,443 for sinhe3 (0.23 sec)

  1. src/math/sinh_s390x.s

    DATA sinhe5<>+0(SB)/8, $0.97631072948627397816E-02
    GLOBL sinhe5<>+0(SB), RODATA, $8
    DATA sinhe6<>+0(SB)/8, $0.16271839297756073153E-02
    GLOBL sinhe6<>+0(SB), RODATA, $8
    DATA sinhe7<>+0(SB)/8, $0.23245485387271142509E-03
    GLOBL sinhe7<>+0(SB), RODATA, $8
    DATA sinhe8<>+0(SB)/8, $0.29080955860869629131E-04
    GLOBL sinhe8<>+0(SB), RODATA, $8
    DATA sinhe9<>+0(SB)/8, $0.32311267157667725278E-05
    GLOBL sinhe9<>+0(SB), RODATA, $8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. src/math/sinh.go

    package math
    
    /*
    	Floating-point hyperbolic sine and cosine.
    
    	The exponential func is called for arguments
    	greater in magnitude than 0.5.
    
    	A series is used for arguments smaller in magnitude than 0.5.
    
    	Cosh(x) is computed from the exponential func for
    	all arguments.
    */
    
    // Sinh returns the hyperbolic sine of x.
    //
    // Special cases are:
    //
    //	Sinh(±0) = ±0
    //	Sinh(±Inf) = ±Inf
    //	Sinh(NaN) = NaN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/math/cmplx/sin.go

    }
    
    // Complex hyperbolic sine
    //
    // DESCRIPTION:
    //
    // csinh z = (cexp(z) - cexp(-z))/2
    //         = sinh x * cos y  +  i cosh x * sin y .
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    IEEE      -10,+10     30000       3.1e-16     8.2e-17
    
    // Sinh returns the hyperbolic sine of x.
    func Sinh(x complex128) complex128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. src/math/cmplx/tan.go

    	if math.Abs(d) < 0.25 {
    		d = tanSeries(x)
    	}
    	if d == 0 {
    		return Inf()
    	}
    	return complex(math.Sin(2*real(x))/d, math.Sinh(2*imag(x))/d)
    }
    
    // Complex hyperbolic tangent
    //
    // DESCRIPTION:
    //
    // tanh z = (sinh 2x  +  i sin 2y) / (cosh 2x + cos 2y) .
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  5. docs/de/docs/help-fastapi.md

    * Um neue Dokumentationsabschnitte vorzuschlagen.
    * Um ein bestehendes Problem / einen bestehenden Bug zu beheben.
        * Stellen Sie sicher, dass Sie Tests hinzufügen.
    * Um eine neue Funktionalität hinzuzufügen.
        * Stellen Sie sicher, dass Sie Tests hinzufügen.
        * Stellen Sie sicher, dass Sie Dokumentation hinzufügen, falls das notwendig ist.
    
    ## FastAPI pflegen
    
    Helfen Sie mir, **FastAPI** instand zu halten! 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. src/testdata/Isaac.Newton-Opticks.txt

    are equal. For, if the Sines of Refraction of all the Rays are in given
    Proportions to the Sine of Refractions of a Ray which has a mean Degree
    of Refrangibility, and this Sine is in a given Proportion to the equal
    Sines of Incidence, those other Sines of Refraction will also be in
    given Proportions to the equal Sines of Incidence. Now, when the Sines
    of Incidence are equal, it will appear by the following Experiment, that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ConfigurableLauncher.java

         */
        @Override
        T setStandardError(OutputStream outputStream);
    
        /**
         * {@inheritDoc}
         * @since 2.3
         */
        @Override
        T setColorOutput(boolean colorOutput);
    
        /**
         * {@inheritDoc}
         * @since 1.0-milestone-7
         */
        @Override
        T setStandardInput(InputStream inputStream);
    
        /**
         * {@inheritDoc}
         * @since 1.0-milestone-8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         * @param parent the container problem group.
         * @return this
         * @since 8.8
         */
        ProblemSpec id(String name, String displayName, ProblemGroup parent);
    
        /**
         * Declares a short, but context-dependent message for this problem.
         *
         * @param contextualLabel the short message
         * @return this
         * @since 8.8
         */
        ProblemSpec contextualLabel(String contextualLabel);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

        /**
         * Java 11 major version.
         *
         * @since 4.7
         */
        VERSION_11,
    
        /**
         * Java 12 major version.
         *
         * @since 5.0
         */
        VERSION_12,
    
        /**
         * Java 13 major version.
         *
         * @since 6.0
         */
        VERSION_13,
    
        /**
         * Java 14 major version.
         *
         * @since 6.3
         */
        VERSION_14,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt

            /** @since 2.0 */
            @Incubating
            fun foo() {}
    
            /** @since 2.0 */
            @get:Incubating
            val bar: String = "bar"
    
            /** @since 2.0 */
            @get:Incubating
            val bool: Boolean = true
    
            /** @since 2.0 */
            @get:Incubating
            val isBool: Boolean = true
    
            /** @since 2.0 */
            @get:Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top