Home
last modified time | relevance | path

Searched refs:logarithm (Results 1 – 25 of 3699) sorted by relevance

12345678910>>...148

/dports/math/R/R-4.1.2/src/library/base/R/
H A Ddet.R27 z <- determinant(x, logarithm = TRUE, ...)
31 determinant <- function(x, logarithm = TRUE, ...) UseMethod("determinant") argument
33 determinant.matrix <- function(x, logarithm = TRUE, ...) argument
39 structure(if(logarithm) 0 else 1,
40 logarithm = logarithm),
48 .Internal(det_ge_real(x, logarithm))
/dports/math/libRmath/R-4.1.1/src/library/base/R/
H A Ddet.R27 z <- determinant(x, logarithm = TRUE, ...)
31 determinant <- function(x, logarithm = TRUE, ...) UseMethod("determinant") argument
33 determinant.matrix <- function(x, logarithm = TRUE, ...) argument
39 structure(if(logarithm) 0 else 1,
40 logarithm = logarithm),
48 .Internal(det_ge_real(x, logarithm))
/dports/biology/figtree/figtree-1.4.4/src/figtree/treeviewer/decorators/
H A DContinuousScale.java59 logarithm = Boolean.parseBoolean(parts[1]); in ContinuousScale()
74 boolean logarithm) { in ContinuousScale() argument
78 this.logarithm = logarithm; in ContinuousScale()
142 if (logarithm) { in setAttributes()
179 if (logarithm) { in scaleValue()
201 return logarithm; in isLogarithm()
204 public void setLogarithm(boolean logarithm) { in setLogarithm() argument
205 this.logarithm = logarithm; in setLogarithm()
246 sb.append(logarithm); in toString()
256 private boolean logarithm; field in ContinuousScale
/dports/devel/volk/volk-2.2.1/kernels/volk/
H A Dvolk_32f_x2_pow_32f.h147 logarithm = _mm256_fmadd_ps(mantissa, _mm256_sub_ps(frac, leadingOne), logarithm); in volk_32f_x2_pow_32f_a_avx2_fma()
148 logarithm = _mm256_mul_ps(logarithm, ln2); in volk_32f_x2_pow_32f_a_avx2_fma()
263 logarithm = _mm256_add_ps(_mm256_mul_ps(mantissa, _mm256_sub_ps(frac, leadingOne)), logarithm); in volk_32f_x2_pow_32f_a_avx2()
264 logarithm = _mm256_mul_ps(logarithm, ln2); in volk_32f_x2_pow_32f_a_avx2()
380 logarithm = _mm_add_ps(logarithm, _mm_mul_ps(mantissa, _mm_sub_ps(frac, leadingOne))); in volk_32f_x2_pow_32f_a_sse4_1()
381 logarithm = _mm_mul_ps(logarithm, ln2); in volk_32f_x2_pow_32f_a_sse4_1()
526 logarithm = _mm_add_ps(logarithm, _mm_mul_ps(mantissa, _mm_sub_ps(frac, leadingOne))); in volk_32f_x2_pow_32f_u_sse4_1()
527 logarithm = _mm_mul_ps(logarithm, ln2); in volk_32f_x2_pow_32f_u_sse4_1()
642 logarithm = _mm256_fmadd_ps(mantissa, _mm256_sub_ps(frac, leadingOne), logarithm); in volk_32f_x2_pow_32f_u_avx2_fma()
643 logarithm = _mm256_mul_ps(logarithm, ln2); in volk_32f_x2_pow_32f_u_avx2_fma()
[all …]
/dports/graphics/dataplot/dataplot-2c1b27601a3b7523449de612613eadeead9a8f70/lib/frmenus/data/
H A Dlogfunct.top5 LN(X) natural logarithm of a number
6 LOG(X) natural logarithm of a number
7 LOG10(X) base 10 logarithm of a number
8 LOG2(X) base 2 logarithm of a number
/dports/www/carbonapi/carbonapi-0.14.1/expr/functions/logarithm/
H A Dfunction.go1 package logarithm package
14 type logarithm struct { struct
24 f := &logarithm{}
34 func (f *logarithm) Do(ctx context.Context, e parser.Expr, from, until int64, values map[parser.Met… argument
74 func (f *logarithm) Description() map[string]types.FunctionDescription { argument
/dports/math/R/R-4.1.2/src/library/base/man/
H A Ddet.Rd13 determinant(x, logarithm = TRUE, \dots)
18 optionally on the logarithm scale, and the sign of the determinant.
22 \item{logarithm}{logical; if \code{TRUE} (default) return the
23 logarithm of the modulus of the determinant.}
40 determinant if \code{logarithm} is \code{FALSE}; otherwise the
41 logarithm of the modulus.}
/dports/math/libRmath/R-4.1.1/src/library/base/man/
H A Ddet.Rd13 determinant(x, logarithm = TRUE, \dots)
18 optionally on the logarithm scale, and the sign of the determinant.
22 \item{logarithm}{logical; if \code{TRUE} (default) return the
23 logarithm of the modulus of the determinant.}
40 determinant if \code{logarithm} is \code{FALSE}; otherwise the
41 logarithm of the modulus.}
/dports/lang/seed7/seed7/src/
H A Dflt_rtl.c980 floatType logarithm; in fltLog() local
991 logarithm = number; in fltLog()
1009 return logarithm; in fltLog()
1028 floatType logarithm; in fltLog10() local
1039 logarithm = number; in fltLog10()
1057 return logarithm; in fltLog10()
1074 floatType logarithm; in fltLog1p() local
1081 return logarithm; in fltLog1p()
1100 floatType logarithm; in fltLog2() local
1112 logarithm = number; in fltLog2()
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/test/units/plugins/filter/
H A Dtest_mathstuff.py83 ms.logarithm('a')
85 ms.logarithm(10, base='a')
88 assert ms.logarithm(10, 10) == 1.0
89 assert ms.logarithm(69, 10) * 1000 // 1 == 1838
92 assert ms.logarithm(69) * 1000 // 1 == 4234
95 assert ms.logarithm(69, 2) * 1000 // 1 == 6108
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/units/plugins/filter/
H A Dtest_mathstuff.py89 ms.logarithm('a')
91 ms.logarithm(10, base='a')
94 assert ms.logarithm(10, 10) == 1.0
95 assert ms.logarithm(69, 10) * 1000 // 1 == 1838
98 assert ms.logarithm(69) * 1000 // 1 == 4234
101 assert ms.logarithm(69, 2) * 1000 // 1 == 6108
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/units/plugins/filter/
H A Dtest_mathstuff.py83 ms.logarithm('a')
85 ms.logarithm(10, base='a')
88 assert ms.logarithm(10, 10) == 1.0
89 assert ms.logarithm(69, 10) * 1000 // 1 == 1838
92 assert ms.logarithm(69) * 1000 // 1 == 4234
95 assert ms.logarithm(69, 2) * 1000 // 1 == 6108
/dports/finance/R-cran-plm/plm/man/
H A DGasoline.Rd12 \item{lgaspcar}{logarithm of motor gasoline consumption per car}
13 \item{lincomep}{logarithm of real per-capita income}
14 \item{lrpmg}{logarithm of real motor gasoline price}
15 \item{lcarpcap}{logarithm of the stock of cars per capita}
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/mysql-test/r/
H A Dfunc_math.result54 Warning 3020 Invalid argument for logarithm
55 Warning 3020 Invalid argument for logarithm
56 Warning 3020 Invalid argument for logarithm
67 Warning 3020 Invalid argument for logarithm
68 Warning 3020 Invalid argument for logarithm
79 Warning 3020 Invalid argument for logarithm
80 Warning 3020 Invalid argument for logarithm
91 Warning 3020 Invalid argument for logarithm
92 Warning 3020 Invalid argument for logarithm
258 Warning 3020 Invalid argument for logarithm
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/mysql-test/r/
H A Dfunc_math.result54 Warning 3020 Invalid argument for logarithm
55 Warning 3020 Invalid argument for logarithm
56 Warning 3020 Invalid argument for logarithm
67 Warning 3020 Invalid argument for logarithm
68 Warning 3020 Invalid argument for logarithm
79 Warning 3020 Invalid argument for logarithm
80 Warning 3020 Invalid argument for logarithm
91 Warning 3020 Invalid argument for logarithm
92 Warning 3020 Invalid argument for logarithm
258 Warning 3020 Invalid argument for logarithm
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/mysql-test/r/
H A Dfunc_math.result54 Warning 3020 Invalid argument for logarithm
55 Warning 3020 Invalid argument for logarithm
56 Warning 3020 Invalid argument for logarithm
67 Warning 3020 Invalid argument for logarithm
68 Warning 3020 Invalid argument for logarithm
79 Warning 3020 Invalid argument for logarithm
80 Warning 3020 Invalid argument for logarithm
91 Warning 3020 Invalid argument for logarithm
92 Warning 3020 Invalid argument for logarithm
258 Warning 3020 Invalid argument for logarithm
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/mysql-test/r/
H A Dfunc_math.result54 Warning 3020 Invalid argument for logarithm
55 Warning 3020 Invalid argument for logarithm
56 Warning 3020 Invalid argument for logarithm
67 Warning 3020 Invalid argument for logarithm
68 Warning 3020 Invalid argument for logarithm
79 Warning 3020 Invalid argument for logarithm
80 Warning 3020 Invalid argument for logarithm
91 Warning 3020 Invalid argument for logarithm
92 Warning 3020 Invalid argument for logarithm
258 Warning 3020 Invalid argument for logarithm
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/mysql-test/r/
H A Dfunc_math.result54 Warning 3020 Invalid argument for logarithm
55 Warning 3020 Invalid argument for logarithm
56 Warning 3020 Invalid argument for logarithm
67 Warning 3020 Invalid argument for logarithm
68 Warning 3020 Invalid argument for logarithm
79 Warning 3020 Invalid argument for logarithm
80 Warning 3020 Invalid argument for logarithm
91 Warning 3020 Invalid argument for logarithm
92 Warning 3020 Invalid argument for logarithm
258 Warning 3020 Invalid argument for logarithm
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/mysql-test/r/
H A Dfunc_math.result54 Warning 3020 Invalid argument for logarithm
55 Warning 3020 Invalid argument for logarithm
56 Warning 3020 Invalid argument for logarithm
67 Warning 3020 Invalid argument for logarithm
68 Warning 3020 Invalid argument for logarithm
79 Warning 3020 Invalid argument for logarithm
80 Warning 3020 Invalid argument for logarithm
91 Warning 3020 Invalid argument for logarithm
92 Warning 3020 Invalid argument for logarithm
258 Warning 3020 Invalid argument for logarithm
[all …]
/dports/math/pari/pari-2.13.3/src/test/32/
H A Dzn52 error("incorrect type in generic discrete logarithm (order factorization) (t
54 error("incorrect type in generic discrete logarithm (order factorization) (t
56 error("incorrect type in generic discrete logarithm (order factorization) (t
58 error("incorrect type in generic discrete logarithm (order factorization) (t
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Dfloating_point_log.stderr1 error: logarithm for bases 2, 10 and e can be computed more accurately
9 error: logarithm for bases 2, 10 and e can be computed more accurately
15 error: logarithm for bases 2, 10 and e can be computed more accurately
21 error: logarithm for bases 2, 10 and e can be computed more accurately
27 error: logarithm for bases 2, 10 and e can be computed more accurately
33 error: logarithm for bases 2, 10 and e can be computed more accurately
39 error: logarithm for bases 2, 10 and e can be computed more accurately
45 error: logarithm for bases 2, 10 and e can be computed more accurately
/dports/science/tfel/tfel-3.4.0/mfront/src/
H A DCalculiXStressFreeExpansionHandler.cxx73 const auto ln_e0 = tfel::math::logarithm(e0); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
74 const auto ln_e1 = tfel::math::logarithm(e1); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
86 const auto ln_e0 = tfel::math::logarithm(e0); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
87 const auto ln_e1 = tfel::math::logarithm(e1); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
/dports/science/tfel-edf/tfel-3.2.1/mfront/src/
H A DCalculiXStressFreeExpansionHandler.cxx73 const auto ln_e0 = tfel::math::logarithm(e0); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
74 const auto ln_e1 = tfel::math::logarithm(e1); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
86 const auto ln_e0 = tfel::math::logarithm(e0); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
87 const auto ln_e1 = tfel::math::logarithm(e1); in CalculiXLogarithmicStrainStressFreeExpansionHandlerImpl()
/dports/math/gsl/gsl-2.7/doc/
H A Dspecfunc-log.rst1 .. index:: logarithm and related functions
10 These routines compute the logarithm of :data:`x`, :math:`\log(x)`, for
17 These routines compute the logarithm of the magnitude of :data:`x`,
23 This routine computes the complex logarithm of :math:`z = z_r + i z_i`.
/dports/databases/grass7/grass-7.8.6/raster/r.li/r.li.dominance/
H A Ddominance.c256 double perc, logarithm; in calculate() local
274 logarithm = log(perc); in calculate()
275 shannon += perc * logarithm; in calculate()
443 double perc, logarithm; in calculateD() local
461 logarithm = log(perc); in calculateD()
462 shannon += perc * logarithm; in calculateD()
630 double perc, logarithm; in calculateF() local
648 logarithm = log(perc); in calculateF()
649 shannon += perc * logarithm; in calculateF()

12345678910>>...148