Skip to content

Commit cc9cb3f

Browse files
committed
docs: update equation
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent dd8b50b commit cc9cb3f

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/stats/strided/dcovmatmtk

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/strided/dcovmatmtk/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ The use of the term `n-1` is commonly referred to as Bessel's correction. Depend
9090

9191
Given a matrix **X** containing `K` data vectors `X_i`, a [covariance matrix][covariance-matrix] (also known as the **auto-covariance matrix**, **dispersion matrix**, **variance matrix**, or **variance-covariance matrix**) is a square matrix containing the [covariance][covariance] `cov(X_i,X_j)` between each pair of data vectors for `0 <= i < K` and `0 <= j < K`.
9292

93-
<!-- <equation class="equation" label="eq:covariance_matrix" align="center" raw="\operatorname{cov}(\mathbf{X}) = \begin{bmatrix} \operatorname{var}(X_0,X_0) & \operatorname{cov}(X_0,X_1) & \ldots & \operatorname{cov}(X_0,X_K) \\ \operatorname{cov}(X_1,X_0) & \operatorname{var}(X_1,X_1) & \ldots & \operatorname{cov}(X_1,X_K) \\ \vdots & \vdots & \ddots & \vdots \\ \operatorname{cov}(X_K,X_0) & \operatorname{cov}(X_K,X_1) & \ldots & \operatorname{var}(X_K,X_K) \\ \end{bmatrix}" alt="Equation for covariance matrix."> -->
93+
<!-- <equation class="equation" label="eq:covariance_matrix" align="center" raw="\operatorname{cov}(\mathrm{\mathbf{X}}) = \begin{bmatrix} \operatorname{var}(X_0,X_0) & \operatorname{cov}(X_0,X_1) & \ldots & \operatorname{cov}(X_0,X_{K-1}) \\ \operatorname{cov}(X_1,X_0) & \operatorname{var}(X_1,X_1) & \ldots & \operatorname{cov}(X_1,X_{K-1}) \\ \vdots & \vdots & \ddots & \vdots \\ \operatorname{cov}(X_{K-1},X_0) & \operatorname{cov}(X_{K-1},X_1) & \ldots & \operatorname{var}(X_{K-1},X_{K-1}) \\ \end{bmatrix}" alt="Equation for covariance matrix."> -->
9494

9595
```math
96-
\mathop{\mathrm{cov}}(\mathbf{X}) = \begin{bmatrix}
97-
\mathop{\mathrm{var}}(X_0,X_0) & \mathop{\mathrm{cov}}(X_0,X_1) & \ldots & \mathop{\mathrm{cov}}(X_0,X_K) \\
98-
\mathop{\mathrm{cov}}(X_1,X_0) & \mathop{\mathrm{var}}(X_1,X_1) & \ldots & \mathop{\mathrm{cov}}(X_1,X_K) \\
96+
\mathop{\mathrm{cov}}(\mathrm{\mathbf{X}}) = \begin{bmatrix}
97+
\mathop{\mathrm{var}}(X_0,X_0) & \mathop{\mathrm{cov}}(X_0,X_1) & \ldots & \mathop{\mathrm{cov}}(X_0,X_{K-1}) \\
98+
\mathop{\mathrm{cov}}(X_1,X_0) & \mathop{\mathrm{var}}(X_1,X_1) & \ldots & \mathop{\mathrm{cov}}(X_1,X_{K-1}) \\
9999
\vdots & \vdots & \ddots & \vdots \\
100-
\mathop{\mathrm{cov}}(X_K,X_0) & \mathop{\mathrm{cov}}(X_K,X_1) & \ldots & \mathop{\mathrm{var}}(X_K,X_K) \\
100+
\mathop{\mathrm{cov}}(X_{K-1},X_0) & \mathop{\mathrm{cov}}(X_{K-1},X_1) & \ldots & \mathop{\mathrm{var}}(X_{K-1},X_{K-1}) \\
101101
\end{bmatrix}
102102
```
103103

0 commit comments

Comments
 (0)