Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testNormalDistribution (0.22 sec)

  1. src/math/rand/rand_test.go

    	for _, seed := range testSeeds {
    		testNormalDistribution(t, numTestSamples, 0, 1, seed)
    	}
    }
    
    func TestNonStandardNormalValues(t *testing.T) {
    	sdmax := 1000.0
    	mmax := 1000.0
    	if testing.Short() {
    		sdmax = 5
    		mmax = 5
    	}
    	for sd := 0.5; sd < sdmax; sd *= 2 {
    		for m := 0.5; m < mmax; m *= 2 {
    			for _, seed := range testSeeds {
    				testNormalDistribution(t, numTestSamples, m, sd, seed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. src/math/rand/v2/rand_test.go

    	for _, seed := range testSeeds {
    		testNormalDistribution(t, numTestSamples, 0, 1, seed)
    	}
    }
    
    func TestNonStandardNormalValues(t *testing.T) {
    	sdmax := 1000.0
    	mmax := 1000.0
    	if testing.Short() {
    		sdmax = 5
    		mmax = 5
    	}
    	for sd := 0.5; sd < sdmax; sd *= 2 {
    		for m := 0.5; m < mmax; m *= 2 {
    			for _, seed := range testSeeds {
    				testNormalDistribution(t, numTestSamples, m, sd, seed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top