Skip to content

Commit

Permalink
use MathJax
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz committed Jan 31, 2025
1 parent 84058b7 commit 8843df7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A full and standardized implementation of the present library has been integrate

All procedures work with all types (`real`, `complex`) and kinds (32, 64, 128-bit floats).

## [`solve`](@ref la_solve::solve) - Solve a linear matrix equation or a linear system of equations.
## [solve](@ref la_solve::solve) - Solve a linear matrix equation or a linear system of equations.

### Syntax

Expand All @@ -34,7 +34,7 @@ For a full-rank matrix, returns an array value that represents the solution to t
- Raises [`LINALG_VALUE_ERROR`](@ref la_state_type::linalg_value_error) if the matrix and rhs vectors have invalid/incompatible sizes.
- If `err` is not present, exceptions trigger an `error stop`.

## [`lstsq`](@ref la_least_squares::lstsq) - Compute a least squares solution to a system of linear equations.
## [lstsq](@ref la_least_squares::lstsq) - Compute a least squares solution to a system of linear equations.

### Syntax

Expand Down Expand Up @@ -178,7 +178,7 @@ Returns the solution array \f$ x \f$ with size \f$ n \f$ (for a single right-han
**Optional arguments**:
- `err`: Error handler.

## [`qr`](@ref la_qr::qr) - Compute the QR factorization of a matrix.
## [qr](@ref la_qr::qr) - Compute the QR factorization of a matrix.

### Syntax

Expand Down Expand Up @@ -223,7 +223,7 @@ The QR factorization matrices \f$ Q \f$ and \f$ R \f$ are returned in the corres
- If `overwrite_a` is enabled, the input matrix `a` will be modified during computation.


## [`qr_space`](@ref la_qr::qr_space) - Workspace size for QR operations.
## [qr_space](@ref la_qr::qr_space) - Workspace size for QR operations.

### Syntax

Expand Down
4 changes: 2 additions & 2 deletions project/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ FULL_SIDEBAR = NO
TREEVIEW_WIDTH = 250
EXT_LINKS_IN_WINDOW = NO
FORMULA_FONTSIZE = 16
USE_MATHJAX = NO
MATHJAX_RELPATH = http://www.mathjax.org/mathjax
USE_MATHJAX = YES
MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/
SEARCHENGINE = YES
SERVER_BASED_SEARCH = NO
#---------------------------------------------------------------------------
Expand Down

0 comments on commit 8843df7

Please sign in to comment.