Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for lgamma (0.22 sec)

  1. src/math/gamma.go

    	} else {
    		y1 = Pow(x, x-0.5) / y1
    	}
    	return y1, SqrtTwoPi * w * y2
    }
    
    // Gamma returns the Gamma function of x.
    //
    // Special cases are:
    //
    //	Gamma(+Inf) = +Inf
    //	Gamma(+0) = +Inf
    //	Gamma(-0) = -Inf
    //	Gamma(x) = NaN for integer x < 0
    //	Gamma(-Inf) = NaN
    //	Gamma(NaN) = NaN
    func Gamma(x float64) float64 {
    	const Euler = 0.57721566490153286060651209008240243104215933593992 // A001620
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-gamma.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 365 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/BuildInvocationsCrossVersionSpec.groovy

              task alpha {
                description = 'ALPHA from sub project'
              }
              task beta {
                description = 'BETA from sub project'
              }
              task gamma {
                description = 'GAMMA from sub'
              }
            '''
    
            when:
            def buildInvocations = withConnection { ProjectConnection connection ->
                connection.getModel(BuildInvocations.class)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/crypto/elliptic/params.go

    	z3.Mul(z3, z3)
    	z3.Sub(z3, gamma)
    	if z3.Sign() == -1 {
    		z3.Add(z3, curve.P)
    	}
    	z3.Sub(z3, delta)
    	if z3.Sign() == -1 {
    		z3.Add(z3, curve.P)
    	}
    	z3.Mod(z3, curve.P)
    
    	beta.Lsh(beta, 2)
    	beta.Sub(beta, x3)
    	if beta.Sign() == -1 {
    		beta.Add(beta, curve.P)
    	}
    	y3 := alpha.Mul(alpha, beta)
    
    	gamma.Mul(gamma, gamma)
    	gamma.Lsh(gamma, 3)
    	gamma.Mod(gamma, curve.P)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-version-info.pbtxt

            dtype: DT_FLOAT
            tensor_shape {
              dim {
                size: 2
              }
            }
            tensor_content: "\261OI?\224);>"
          }
        }
      }
    }
    node {
      name: "gamma"
      op: "Const"
      device: "/device:CPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "value"
        value {
          tensor {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt.debug

      value {
        file_line_cols {
          file_index: 49
          line: 886
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/gamma@"
      value {
        file_line_cols {
          file_index: 38
          line: 777
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/gamma/read@"
      value {
        file_line_cols {
          file_index: 49
          line: 915
        }
      }
    }
    traces {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt.debug

      value {
        file_line_cols {
          file_index: 49
          line: 886
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/gamma@"
      value {
        file_line_cols {
          file_index: 38
          line: 777
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/gamma/read@"
      value {
        file_line_cols {
          file_index: 49
          line: 915
        }
      }
    }
    traces {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  8. src/math/cmplx/log.go

    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    // Complex natural logarithm
    //
    // DESCRIPTION:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. src/math/cmplx/exp.go

    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    // Complex exponential function
    //
    // DESCRIPTION:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  10. src/math/cmplx/pow.go

    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    // Complex power function
    //
    // DESCRIPTION:
    //
    // Raises complex A to the complex Zth power.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top