Skip to content

Commit 5b5b3eb

Browse files
committed
fix math
1 parent 8371c80 commit 5b5b3eb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/gstools/cokriging/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class CollocatedCokriging(Krige):
2828
Both variants assume the cross-covariance follows:
2929
3030
.. math::
31-
C_{YZ}(h) = \frac{C_{YZ}(0)}{C_Z(0)} \cdot C_Z(h)
31+
C_{YZ}(h) = \\frac{C_{YZ}(0)}{C_Z(0)} \\cdot C_Z(h)
3232
3333
where :math:`\\rho_{YZ}(0)` is the cross-correlation at zero lag. This assumption
3434
requires that primary and secondary variables have similar spatial

src/gstools/cokriging/methods.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SimpleCollocated(CollocatedCokriging):
2727
Assumes the cross-covariance follows the Markov Model I:
2828
2929
.. math::
30-
C_{YZ}(h) = \frac{C_{YZ}(0)}{C_Z(0)} \cdot C_Z(h)
30+
C_{YZ}(h) = \\frac{C_{YZ}(0)}{C_Z(0)} \\cdot C_Z(h)
3131
3232
where :math:`\\rho_Y(h) = \\rho_Z(h)`, meaning both variables share the same
3333
spatial correlation structure. This requires similar spatial correlation
@@ -187,7 +187,7 @@ class IntrinsicCollocated(CollocatedCokriging):
187187
Like :any:`SimpleCollocated`, assumes the cross-covariance follows:
188188
189189
.. math::
190-
C_{YZ}(h) = \frac{C_{YZ}(0)}{C_Z(0)} \cdot C_Z(h)
190+
C_{YZ}(h) = \\frac{C_{YZ}(0)}{C_Z(0)} \\cdot C_Z(h)
191191
192192
**Advantage over SimpleCollocated:**
193193

0 commit comments

Comments
 (0)