/third_party/ffmpeg/libavutil/ |
D | pca.c | 33 double *covariance; member 50 pca->covariance= av_calloc(n*n, sizeof(double)); in ff_pca_init() 53 if (!pca->z || !pca->covariance || !pca->mean) { in ff_pca_init() 62 av_freep(&pca->covariance); in ff_pca_free() 75 pca->covariance[j + i*n] += v[i]*v[j]; in ff_pca_add() 92 pca->covariance[j + i*n] /= pca->count; in ff_pca() 93 pca->covariance[j + i*n] -= pca->mean[i] * pca->mean[j]; in ff_pca() 94 pca->covariance[i + j*n] = pca->covariance[j + i*n]; in ff_pca() 96 eigenvalue[j]= pca->covariance[j + j*n]; in ff_pca() 105 sum += fabs(pca->covariance[j + i*n]); in ff_pca() [all …]
|
D | lls.c | 42 m->covariance[i][j] += var[i] * var[j]; in update_lls() 50 double (*factor)[MAX_VARS_ALIGN] = (void *) &m->covariance[1][0]; in avpriv_solve_lls() 51 double (*covar) [MAX_VARS_ALIGN] = (void *) &m->covariance[1][1]; in avpriv_solve_lls() 52 double *covar_y = m->covariance[0]; in avpriv_solve_lls()
|
D | lls.h | 39 DECLARE_ALIGNED(32, double, covariance[MAX_VARS_ALIGN][MAX_VARS_ALIGN]);
|
/third_party/ffmpeg/libavutil/tests/ |
D | pca.c | 74 printf("%f ", pca->covariance[i + j*LEN]); in main() 85 v[j] += pca->covariance[FFMIN(k,j) + FFMAX(k,j)*LEN] * eigenvector[i + k*LEN]; in main()
|
/third_party/typescript/tests/baselines/reference/ |
D | contextualSignatureInstatiationCovariance.types | 21 … TallThing satisfy the constraint, T is at worst a Giraffe and compatible with both via covariance. 31 … not satisfy the constraint, but T is at worst a Giraffe and compatible with Animal via covariance.
|
D | contextualSignatureInstatiationCovariance.symbols | 32 … TallThing satisfy the constraint, T is at worst a Giraffe and compatible with both via covariance. 43 … not satisfy the constraint, but T is at worst a Giraffe and compatible with Animal via covariance.
|
D | varianceMeasurement.types | 147 declare covariance: V; 148 >covariance : V
|
D | varianceMeasurement.symbols | 211 declare covariance: V; 212 >covariance : Symbol(C.covariance, Decl(varianceMeasurement.ts, 70, 27))
|
D | varianceMeasurement.js | 73 declare covariance: V;
|
D | callSignatureAssignabilityInInheritance3.types | 165 …a10: <T extends Derived>(...x: T[]) => T; // valid, parameter covariance works even after contextu… 171 …erived>(x: T, y: T) => T; // valid, even though x is a Base, parameter covariance works even after…
|
D | constructSignatureAssignabilityInInheritance3.types | 141 …a10: new <T extends Derived>(...x: T[]) => T; // valid, parameter covariance works even after cont… 147 …erived>(x: T, y: T) => T; // valid, even though x is a Base, parameter covariance works even after…
|
D | constructSignatureAssignabilityInInheritance3.errors.txt | 111 …a10: new <T extends Derived>(...x: T[]) => T; // valid, parameter covariance works even after cont… 115 …erived>(x: T, y: T) => T; // valid, even though x is a Base, parameter covariance works even after…
|
D | callSignatureAssignabilityInInheritance3.errors.txt | 121 …a10: <T extends Derived>(...x: T[]) => T; // valid, parameter covariance works even after contextu… 125 …erived>(x: T, y: T) => T; // valid, even though x is a Base, parameter covariance works even after…
|
D | constructSignatureAssignabilityInInheritance3.symbols | 206 …a10: new <T extends Derived>(...x: T[]) => T; // valid, parameter covariance works even after cont… 219 …erived>(x: T, y: T) => T; // valid, even though x is a Base, parameter covariance works even after…
|
D | callSignatureAssignabilityInInheritance3.symbols | 246 …a10: <T extends Derived>(...x: T[]) => T; // valid, parameter covariance works even after contextu… 259 …erived>(x: T, y: T) => T; // valid, even though x is a Base, parameter covariance works even after…
|
D | varianceMeasurement.errors.txt | 133 declare covariance: V;
|
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_ssim.asm | 198 psubd m4, m5 ; covariance 201 ; m1 = fs1 * fs1, m2 = fs2 * fs2, m3 = variance, m4 = covariance, m5 = fs1 * fs2 202 paddd m4, m4 ; 2 * covariance 206 paddd m4, [ssim_c2] ; 2 * covariance + ssim_c2
|
/third_party/typescript/tests/cases/compiler/ |
D | varianceMeasurement.ts | 74 declare covariance: V; property in C
|
/third_party/python/Doc/library/ |
D | statistics.rst | 77 :func:`covariance` Sample covariance for two variables. 581 .. function:: covariance(x, y, /) 583 Return the sample covariance of two inputs *x* and *y*. Covariance 595 >>> covariance(x, y) 598 >>> covariance(x, z) 600 >>> covariance(z, x)
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/ |
D | DeviceMTL.mm | 53 float R; // The covariance of the observation noise 54 float P; // The a posteriori estimate covariance 65 // Update estimate covariance
|
/third_party/ffmpeg/libavutil/x86/ |
D | lls.asm | 33 .covariance: resq MAX_VARS_ALIGN*MAX_VARS_ALIGN label
|
/third_party/python/Lib/test/ |
D | test_statistics.py | 2421 statistics.covariance(x, y) 2437 statistics.covariance(x, y) 2455 self.assertAlmostEqual(statistics.covariance(x, y), result) 2461 self.assertAlmostEqual(statistics.covariance(x, y), 5) 2465 self.assertAlmostEqual(statistics.covariance(x, y), 0.1)
|
/third_party/python/Lib/ |
D | statistics.py | 861 def covariance(x, y, /): function
|
/third_party/python/Doc/whatsnew/ |
D | 3.10.rst | 1299 Add :func:`~statistics.covariance`, Pearson's
|