Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vfsinhSC (0.07 sec)

  1. src/math/arith_s390x_test.go

    	for i := 0; i < len(vf); i++ {
    		if f := SinhNoVec(vf[i]); !close(sinh[i], f) {
    			t.Errorf("Sinh(%g) = %g, want %g", vf[i], f, sinh[i])
    		}
    	}
    	for i := 0; i < len(vfsinhSC); i++ {
    		if f := SinhNoVec(vfsinhSC[i]); !alike(sinhSC[i], f) {
    			t.Errorf("Sinh(%g) = %g, want %g", vfsinhSC[i], f, sinhSC[i])
    		}
    	}
    }
    
    // Check that math functions of high angle values
    // return accurate results. [Since (vf[i] + large) - large != vf[i],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 10.8K bytes
    - Viewed (0)
  2. src/math/all_test.go

    		if f := Sinh(vf[i]); !close(sinh[i], f) {
    			t.Errorf("Sinh(%g) = %g, want %g", vf[i], f, sinh[i])
    		}
    	}
    	for i := 0; i < len(vfsinhSC); i++ {
    		if f := Sinh(vfsinhSC[i]); !alike(sinhSC[i], f) {
    			t.Errorf("Sinh(%g) = %g, want %g", vfsinhSC[i], f, sinhSC[i])
    		}
    	}
    }
    
    func TestSqrt(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		a := Abs(vf[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top