Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for xatan (0.06 sec)

  1. src/math/stubs_s390x.s

    TEXT ·atanTrampolineSetup(SB), NOSPLIT, $0
    	MOVB   ·hasVX(SB), R1
    	CMPBEQ R1, $1, vectorimpl                // vectorfacility = 1, vector supported
    	MOVD   $·atanvectorfacility+0x00(SB), R1
    	MOVD   $·atan(SB), R2
    	MOVD   R2, 0(R1)
    	BR     ·atan(SB)
    
    vectorimpl:
    	MOVD $·atanvectorfacility+0x00(SB), R1
    	MOVD $·atanAsm(SB), R2
    	MOVD R2, 0(R1)
    	BR   ·atanAsm(SB)
    
    GLOBL ·atanvectorfacility+0x00(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  2. src/math/cmplx/tan.go

    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      5200       7.1e-17     1.6e-17
    //    IEEE      -10,+10     30000       7.2e-16     1.2e-16
    // Also tested by ctan * ccot = 1 and catan(ctan(z))  =  z.
    
    // Tan returns the tangent of x.
    func Tan(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case math.IsInf(im, 0):
    		switch {
    		case math.IsInf(re, 0) || math.IsNaN(re):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  3. test/chan/powser1.go

    		print("Sub: ")
    		printn(Sub(Ones, Twos), 10)
    		print("Mul: ")
    		printn(Mul(Ones, Ones), 10)
    		print("Exp: ")
    		printn(Exp(Ones), 15)
    		print("MonSubst: ")
    		printn(MonSubst(Ones, neg(one), 2), 10)
    		print("ATan: ")
    		printn(Integ(zero, MonSubst(Ones, neg(one), 2)), 10)
    	} else { // test
    		check(Ones, one, 5, "Ones")
    		check(Add(Ones, Ones), itor(2), 0, "Add Ones Ones") // 1 1 1 1 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  4. test/chan/powser2.go

    		print("Sub: ")
    		Printn(Sub(Ones, Twos), 10)
    		print("Mul: ")
    		Printn(Mul(Ones, Ones), 10)
    		print("Exp: ")
    		Printn(Exp(Ones), 15)
    		print("MonSubst: ")
    		Printn(MonSubst(Ones, neg(one), 2), 10)
    		print("ATan: ")
    		Printn(Integ(zero, MonSubst(Ones, neg(one), 2)), 10)
    	} else { // test
    		check(Ones, one, 5, "Ones")
    		check(Add(Ones, Ones), itor(2), 0, "Add Ones Ones") // 1 1 1 1 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  5. src/math/atan2_s390x.s

    	MOVD	$0, R3
    	CMPUBEQ	R3, R1, xIsPosZero
    
    	MOVD	$PosInf, R4
    	CMPUBEQ	R4, R2, yIsPosInf
    
    	MOVD	$NegInf, R4
    	CMPUBEQ	R4, R2, yIsNegInf
    	BR	Normal
    xIsNegZero:
    	// special case Atan(-0, y>=0) = -0
    	MOVD	$0, R4
    	CMPBLE	R4, R2, returnX
    
    	//special case Atan2(-0, y<=-0) = -Pi
    	MOVD	$NegZero, R4
    	CMPBGE	R4, R2, returnNegPi
    	BR	Normal
    xIsPosZero:
    	//special case Atan2(0, 0) = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 04:06:34 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  6. src/math/all_test.go

    		}
    	}
    }
    
    func TestAtan(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Atan(vf[i]); !veryclose(atan[i], f) {
    			t.Errorf("Atan(%g) = %g, want %g", vf[i], f, atan[i])
    		}
    	}
    	for i := 0; i < len(vfatanSC); i++ {
    		if f := Atan(vfatanSC[i]); !alike(atanSC[i], f) {
    			t.Errorf("Atan(%g) = %g, want %g", vfatanSC[i], f, atanSC[i])
    		}
    	}
    }
    
    func TestAtanh(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  7. docs/az/docs/index.md

    * **Çevik kodlama**: Funksiyanallıqları inkişaf etdirmək sürətini təxminən 200%-dən 300%-ə qədər artırın. *
    * **Daha az xəta**: İnsan (developer) tərəfindən törədilən səhvlərin təxminən 40% -ni azaldın. *
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="xalan" name="serializer" version="2.7.1">
             <artifact name="serializer-2.7.1.jar">
                <sha256 value="a15078d243d4a20b6b4e8ae2f61ed4655e352054e121aada6f7441f1ed445a3c" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
          </component>
          <component group="xalan" name="xalan" version="2.7.1">
             <artifact name="xalan-2.7.1.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. docs/tr/docs/alternatives.md

    ### Flask REST framework'leri
    
    Pek çok Flask REST framework'ü var, fakat bunları biraz araştırdıktan sonra pek çoğunun artık geliştirilmediğini ve göze batan bazı sorunlarının olduğunu gördüm.
    
    ### <a href="https://marshmallow.readthedocs.io/en/stable/" class="external-link" target="_blank">Marshmallow</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

      auto dydx = Reciprocal(scope, Add(scope, one, Square(scope, op.input(0))));
      auto dx = Mul(scope, grad_inputs[0], dydx);
      grad_outputs->push_back(dx);
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Atan", AtanGrad);
    
    Status Atan2Grad(const Scope& scope, const Operation& op,
                     const std::vector<Output>& grad_inputs,
                     std::vector<Output>* grad_outputs) {
      auto y = op.input(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top