From 73742b2bc1f2c20b5cac1d496c4a3c10495fb437 Mon Sep 17 00:00:00 2001 From: Haaaaron Date: Tue, 9 Jan 2024 17:35:42 +0200 Subject: [PATCH] finished mathematical operations section --- docs/guide/user_guide/field.dox | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/user_guide/field.dox b/docs/guide/user_guide/field.dox index 73e8f338..04a59432 100644 --- a/docs/guide/user_guide/field.dox +++ b/docs/guide/user_guide/field.dox @@ -429,7 +429,7 @@ onsites(ALL) f[X].gaussian_random(); # Mathematical methods {#mathematical_methods_field} -Standard arithmetic methods: +* **Standard arithmetic methods:** - `Field::operator+` - `Field::operator-` @@ -448,7 +448,7 @@ f = f @ g; // Field operated with other field f = f @ a; // Field operated with scalar ~~~ -Arithmetic assignment methods: +* **Arithmetic assignment methods:** - `Field::operator+=` - `Field::operator-=` @@ -467,7 +467,7 @@ f @= g; // Field operated with other field f @= a; // Field operated with scalar ~~~ -Mathematical functions: +* **Mathematical functions:** - `Field::exp` - `Field::log`