Home
last modified time | relevance | path

Searched refs:Laplace (Results 1 – 25 of 1453) sorted by relevance

12345678910>>...59

/dports/math/openturns/openturns-1.18/lib/src/Uncertainty/Distribution/
H A DLaplace.cxx30 CLASSNAMEINIT(Laplace)
35 Laplace::Laplace() in Laplace() function in Laplace
46 Laplace::Laplace(const Scalar mu, in Laplace() function in Laplace
62 Bool Laplace::operator ==(const Laplace & other) const in operator ==()
70 const Laplace* p_other = dynamic_cast<const Laplace*>(&other); in equals()
75 String Laplace::__repr__() const in __repr__()
94 Laplace * Laplace::clone() const in clone()
96 return new Laplace(*this); in clone()
208 void Laplace::computeMean() const in computeMean()
242 return new Laplace(0.0, 1.0); in getStandardRepresentative()
[all …]
H A DLaplaceFactory.cxx60 Laplace LaplaceFactory::buildAsLaplace(const Sample & sample) const in buildAsLaplace()
69 Laplace result(mu, size / tau); in buildAsLaplace()
74 Laplace LaplaceFactory::buildAsLaplace(const Point & parameters) const in buildAsLaplace()
78 Laplace distribution; in buildAsLaplace()
88 Laplace LaplaceFactory::buildAsLaplace() const in buildAsLaplace()
90 return Laplace(); in buildAsLaplace()
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/tests/res/
H A Dsys_1d.res2 Laplace with Dirichlet condition, err L2 = 0.000114947479602
3 Laplace with periodic condition, err L2 = 0.000780059018812
4 Laplace with Neumann, err L2 = 0.000780059018812
8 Laplace with Neumann, err L2 = 5.85521217446e-05
12 Laplace with Neumann, err L2 = 2.82892442885e-05
16 Laplace with Neumann, err L2 = 1.49906631355e-06
20 Laplace with Neumann, err L2 = 5.72106948057e-08
24 Laplace with Neumann, err L2 = 1.77395240458e-09
28 Laplace with Neumann, err L2 = 4.71166417636e-11
32 Laplace with Neumann, err L2 = 3.06636492613e-12
[all …]
/dports/math/openturns/openturns-1.18/lib/test/
H A Dt_LaplaceFactory_std.expout1 Distribution =class=Laplace name=Laplace dimension=1 mu=-1.3 lambda=2.5
2 Estimated distribution=class=Laplace name=Laplace dimension=1 mu=-1.29551 lambda=2.46764
3 Default distribution=class=Laplace name=Laplace dimension=1 mu=0 lambda=1
4 Distribution from parameters=class=Laplace name=Laplace dimension=1 mu=-1.3 lambda=2.5
5 Laplace =class=Laplace name=Laplace dimension=1 mu=-1.3 lambda=2.5
6 Estimated laplace=class=Laplace name=Laplace dimension=1 mu=-1.29551 lambda=2.46764
7 Default laplace=class=Laplace name=Laplace dimension=1 mu=0 lambda=1
8 Laplace from parameters=class=Laplace name=Laplace dimension=1 mu=-1.3 lambda=2.5
H A Dt_Laplace_std.cxx27 class TestObject : public Laplace
30 TestObject() : Laplace(0.5, 1.5) {} in TestObject()
47 Laplace distribution(0.5, 1.0 / 1.5); in main()
103 PDFgrFD[0] = (Laplace(distribution.getMu() + eps, distribution.getLambda()).computePDF(point) - in main()
104Laplace(distribution.getMu() - eps, distribution.getLambda()).computePDF(point)) / (2.0 * eps); in main()
105 PDFgrFD[1] = (Laplace(distribution.getMu(), distribution.getLambda() + eps).computePDF(point) - in main()
106Laplace(distribution.getMu(), distribution.getLambda() - eps).computePDF(point)) / (2.0 * eps); in main()
111 CDFgrFD[0] = (Laplace(distribution.getMu() + eps, distribution.getLambda()).computeCDF(point) - in main()
112Laplace(distribution.getMu() - eps, distribution.getLambda()).computeCDF(point)) / (2.0 * eps); in main()
113 CDFgrFD[1] = (Laplace(distribution.getMu(), distribution.getLambda() + eps).computeCDF(point) - in main()
[all …]
H A Dt_Laplace_std.expout1 Testing class Laplace
5 class=Laplace name=Laplace dimension=1 mu=0.5 lambda=1.5
7 class=Laplace name=Laplace dimension=1 mu=0.5 lambda=1.5
10 Distribution class=Laplace name=Laplace dimension=1 mu=0.5 lambda=0.666667
11 Distribution Laplace(mu = 0.5, lambda = 0.666667)
40Laplace(mu = 0.5, lambda = 0.666667)) gradientImplementation=MinimumVolumeLevelSetGradient(Laplace
62 Standard representative=Laplace(mu = 0, lambda = 1)
/dports/math/openturns/openturns-1.18/python/test/
H A Dt_LaplaceFactory_std.expout1 distribution= class=Laplace name=Laplace dimension=1 mu=-1.3 lambda=2.5
2 Estimated distribution= class=Laplace name=Laplace dimension=1 mu=-1.29551 lambda=2.46764
3 Default distribution= Laplace(mu = 0, lambda = 1)
4 Distribution from parameters= Laplace(mu = -1.3, lambda = 2.5)
5 Laplace = Laplace(mu = -1.3, lambda = 2.5)
6 Estimated laplace= Laplace(mu = -1.29551, lambda = 2.46764)
7 Default laplace= Laplace(mu = 0, lambda = 1)
8 Laplace from parameters= Laplace(mu = -1.3, lambda = 2.5)
H A Dt_Laplace_std.py11 distribution = Laplace(0.5, 1.5)
65 PDFgrFD[0] = (Laplace(distribution.getMu() + eps, distribution.getLambda()).computePDF(point) -
66Laplace(distribution.getMu() - eps, distribution.getLambda()).computePDF(point)) / (2.0 * eps)
67 PDFgrFD[1] = (Laplace(distribution.getMu(), distribution.getLambda() + eps).computePDF(point) -
68Laplace(distribution.getMu(), distribution.getLambda() - eps).computePDF(point)) / (2.0 * eps)
73 CDFgrFD[0] = (Laplace(distribution.getMu() + eps, distribution.getLambda()).computeCDF(point) -
74Laplace(distribution.getMu() - eps, distribution.getLambda()).computeCDF(point)) / (2.0 * eps)
75 CDFgrFD[1] = (Laplace(distribution.getMu(), distribution.getLambda() + eps).computeCDF(point) -
76Laplace(distribution.getMu(), distribution.getLambda() - eps).computeCDF(point)) / (2.0 * eps)
/dports/math/maxima/maxima-5.43.2/tests/
H A Drtest_laplace.mac208 * Laplace transform of asin(w)
209 * Laplace transform of atan(w)
270 * Laplace transform of Erf function
272 * Laplace transform of Erfc function
273 * Laplace transform of expintegral_ei.
274 * Laplace transform of expintegral_e1
275 * Laplace transform of expintegral_e
276 * Laplace transform of expintegral_si
278 * Laplace transform of expintegral_ci
287 * Laplace transform of c * t^v
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/stat/distuv/
H A Dlaplace.go16 type Laplace struct { struct
23 func (l Laplace) CDF(x float64) float64 { argument
31 func (l Laplace) Entropy() float64 { argument
36 func (l Laplace) ExKurtosis() float64 { argument
123 func (l Laplace) Mean() float64 { argument
128 func (l Laplace) Median() float64 { argument
133 func (l Laplace) Mode() float64 { argument
138 func (l Laplace) NumParameters() int { argument
159 func (l Laplace) Rand() float64 { argument
226 func (Laplace) Skewness() float64 { argument
[all …]
H A Dlaplace_test.go62 testDistributionProbs(t, Laplace{Mu: 0, Scale: 1}, "Laplace", pts)
68 for i, dist := range []Laplace{
77 func testLaplace(t *testing.T, dist Laplace, i int) { argument
154 d := Laplace{}
170 l := Laplace{
179 le := Laplace{}
191 l := Laplace{
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/openshift/api/vendor/gonum.org/v1/gonum/stat/distuv/
H A Dlaplace.go16 type Laplace struct { struct
23 func (l Laplace) CDF(x float64) float64 { argument
31 func (l Laplace) Entropy() float64 { argument
36 func (l Laplace) ExKurtosis() float64 { argument
119 func (l Laplace) Mean() float64 { argument
124 func (l Laplace) Median() float64 { argument
129 func (l Laplace) Mode() float64 { argument
134 func (l Laplace) NumParameters() int { argument
155 func (l Laplace) Rand() float64 { argument
224 func (Laplace) Skewness() float64 { argument
[all …]
H A Dlaplace_test.go61 testDistributionProbs(t, Laplace{Mu: 0, Scale: 1}, "Laplace", pts)
66 for i, dist := range []Laplace{
75 func testLaplace(t *testing.T, dist Laplace, i int) { argument
123 d := Laplace{}
138 l := Laplace{
147 le := Laplace{}
/dports/math/openturns/openturns-1.18/python/src/
H A DLaplace.i9 %include openturns/Laplace.hxx
10 namespace OT { %extend Laplace { Laplace(const Laplace & other) { return new OT::Laplace(other); } … in Laplace() function
H A DLaplace_doc.i.in1 %feature("docstring") OT::Laplace
2 "Laplace distribution.
38 >>> distribution = ot.Laplace(0.0, 1.0)
46 %feature("docstring") OT::Laplace::getLambda
56 %feature("docstring") OT::Laplace::getMu
66 %feature("docstring") OT::Laplace::setLambda
76 %feature("docstring") OT::Laplace::setMu
H A DLaplaceFactory_doc.i.in2 "Laplace factory.
19 DistributionFactory, Laplace"
24 "Build the Laplace distribution.
41 dist : :class:`~openturns.Laplace`
/dports/biology/viennarna/ViennaRNA-2.4.18/src/Kinfold/
H A DMakefile.am20 EXTRA_DIST = Laplace/extract_data.pl \
21 Laplace/laplace.sh \
22 Laplace/README \
23 Laplace/seq1 \
24 Laplace/seq1_ref.ps \
25 Laplace/to_boxplot.R \
/dports/math/fricas/fricas-1.3.7/src/doc/ht/
H A Dexlap.ht5 % Title: Laplace Transforms
7 \begin{page}{ExLapSimplePole}{Laplace transform with a single pole}
9 The Laplace transform of t^n e^(a t) has a pole of order n+1 at x = a
16 \begin{page}{ExLapTrigTrigh}{Laplace transform of a trigonometric function}
25 \begin{page}{ExLapDefInt}{Laplace transform requiring a definite integration}
35 \begin{page}{ExLapExpExp}{Laplace transform of exponentials}
43 \begin{page}{ExLapSpecial1}{Laplace transform of an exponential integral}
51 \begin{page}{ExLapSpecial2}{Laplace transform of special functions}
/dports/math/fricas/fricas-1.3.7/pre-generated/target/share/hypertex/pages/
H A Dexlap.ht5 % Title: Laplace Transforms
7 \begin{page}{ExLapSimplePole}{Laplace transform with a single pole}
9 The Laplace transform of t^n e^(a t) has a pole of order n+1 at x = a
16 \begin{page}{ExLapTrigTrigh}{Laplace transform of a trigonometric function}
25 \begin{page}{ExLapDefInt}{Laplace transform requiring a definite integration}
35 \begin{page}{ExLapExpExp}{Laplace transform of exponentials}
43 \begin{page}{ExLapSpecial1}{Laplace transform of an exponential integral}
51 \begin{page}{ExLapSpecial2}{Laplace transform of special functions}
/dports/science/py-scipy/scipy-1.7.1/doc/source/tutorial/stats/
H A Dcontinuous_laplace_asymmetric.rst3 Asymmetric Laplace Distribution
6 This distribution is a generalization of the Laplace distribution. It
9 Laplace distribution.
38 - "Asymmetric Laplace distribution", Wikipedia
42 Generalization of Laplace Distribution," *Computational Statistics*
/dports/math/openturns/openturns-1.18/lib/src/Uncertainty/Distribution/openturns/
H A DLaplace.hxx33 class OT_API Laplace class
40 Laplace();
43 explicit Laplace(const Scalar mu,
47 Bool operator ==(const Laplace & other) const;
60 Laplace * clone() const override;
H A DLaplaceFactory.hxx51 Laplace buildAsLaplace(const Sample & sample) const;
52 Laplace buildAsLaplace(const Point & parameters) const;
53 Laplace buildAsLaplace() const;
/dports/math/reduce/Reduce-svn5758-src/doc/manual2/
H A Dlaplace.tex1 \chapter[LAPLACE: Laplace transforms etc.]%
2 {LAPLACE: Laplace and inverse Laplace transforms}
4 \typeout{{LAPLACE: Laplace and inverse Laplace transforms}}
15 The LAPLACE package provides both Laplace Transforms and Inverse
16 Laplace Transforms, with the two operators
33 The system can be extended by adding Laplace transformation rules for
/dports/math/mfem/mfem-4.3/doc/
H A DCodeDocumentation.dox45 …" href="ex0_8cpp_source.html">Example 0</a>: simplest example, nodal H1 FEM for the Laplace problem
46 …p_8cpp_source.html">Example 0p</a>: simplest parallel example, nodal H1 FEM for the Laplace problem
59 …* - <a class="el" href="ex7_8cpp_source.html">Example 7</a>: Laplace problem on a surface (the uni…
60 …* - <a class="el" href="ex7p_8cpp_source.html">Example 7p</a>: parallel Laplace problem on a surfa…
61 …f="ex8_8cpp_source.html">Example 8</a>: Discontinuous Petrov-Galerkin (DPG) for the Laplace problem
67 * - <a class="el" href="ex11p_8cpp_source.html">Example 11p</a>: parallel Laplace eigensolver
70 …l" href="ex14_8cpp_source.html">Example 14</a>: Discontinuous Galerkin (DG) for the Laplace problem
95 …* - <a class="el" href="ex27_8cpp_source.html">Example 27</a>: boundary conditions for the Laplace
96 …href="ex27p_8cpp_source.html">Example 27p</a>: parallel boundary conditions for the Laplace problem
99 …* - <a class="el" href="ex29_8cpp_source.html">Example 29</a>: Laplace solve on a 3D-embedded surf…
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/QuadEdgeMeshFiltering/include/
H A DitkDiscreteMeanCurvatureQuadEdgeMeshFilter.h92 OutputVectorType Laplace; in EstimateCurvature() local
94 Laplace.Fill(0.); in EstimateCurvature()
122 Laplace += temp_coeff * ( iP - q0 ); in EstimateCurvature()
143 Laplace *= 0.25 / area; in EstimateCurvature()
144 oH = Laplace * normal; in EstimateCurvature()

12345678910>>...59