Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CoshNoVec (0.09 sec)

  1. src/math/export_s390x_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // Export internal functions and variable for testing.
    var Log10NoVec = log10
    var CosNoVec = cos
    var CoshNoVec = cosh
    var SinNoVec = sin
    var SinhNoVec = sinh
    var TanhNoVec = tanh
    var Log1pNovec = log1p
    var AtanhNovec = atanh
    var AcosNovec = acos
    var AcoshNovec = acosh
    var AsinNovec = asin
    var AsinhNovec = asinh
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 732 bytes
    - Viewed (0)
  2. src/math/arith_s390x_test.go

    }
    
    func TestCoshNovec(t *testing.T) {
    	if !HasVX {
    		t.Skipf("no vector support")
    	}
    	for i := 0; i < len(vf); i++ {
    		if f := CoshNoVec(vf[i]); !close(cosh[i], f) {
    			t.Errorf("Cosh(%g) = %g, want %g", vf[i], f, cosh[i])
    		}
    	}
    	for i := 0; i < len(vfcoshSC); i++ {
    		if f := CoshNoVec(vfcoshSC[i]); !alike(coshSC[i], f) {
    			t.Errorf("Cosh(%g) = %g, want %g", vfcoshSC[i], f, coshSC[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)
Back to top