Skip to content

Commit

Permalink
Turn on Mathjax and minor docstring fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 5, 2024
1 parent 63716be commit 146772b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1688,7 +1688,7 @@ FORMULA_MACROFILE =
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

USE_MATHJAX = NO
USE_MATHJAX = YES

# With MATHJAX_VERSION it is possible to specify the MathJax version to be used.
# Note that the different versions of MathJax have different requirements with
Expand Down Expand Up @@ -1730,7 +1730,7 @@ MATHJAX_FORMAT = HTML-CSS
# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3
# This tag requires that the tag USE_MATHJAX is set to YES.

MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
MATHJAX_RELPATH =

# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
# extension names that should be enabled during MathJax rendering. For example
Expand Down
8 changes: 4 additions & 4 deletions include/tatami_stats/medians.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ void apply(bool row, const tatami::Matrix<Value_, Index_>* p, Output_* output, c
* @tparam Value_ Type of the matrix value.
* @tparam Index_ Type of the row/column indices.
*
* @param p Shared pointer to a `tatami::Matrix`.
* @param p Pointer to a `tatami::Matrix`.
* @param mopt Median calculation options.
*
* @return A vector of length equal to the number of columns, containing the column medians.
Expand All @@ -284,7 +284,7 @@ std::vector<Output_> by_column(const tatami::Matrix<Value_, Index_>* p, const Op
* @tparam Value_ Type of the matrix value.
* @tparam Index_ Type of the row/column indices.
*
* @param p Shared pointer to a `tatami::Matrix`.
* @param p Pointer to a `tatami::Matrix`.
*
* @return A vector of length equal to the number of columns, containing the column medians.
*/
Expand All @@ -301,7 +301,7 @@ std::vector<Output_> by_column(const tatami::Matrix<Value_, Index_>* p) {
* @tparam Value_ Type of the matrix value.
* @tparam Index_ Type of the row/column indices.
*
* @param p Shared pointer to a `tatami::Matrix`.
* @param p Pointer to a `tatami::Matrix`.
* @param mopt Median calculation options.
*
* @return A vector of length equal to the number of rows, containing the row medians.
Expand All @@ -321,7 +321,7 @@ std::vector<Output_> by_row(const tatami::Matrix<Value_, Index_>* p, const Optio
* @tparam Value_ Type of the matrix value.
* @tparam Index_ Type of the row/column indices.
*
* @param p Shared pointer to a `tatami::Matrix`.
* @param p Pointer to a `tatami::Matrix`.
*
* @return A vector of length equal to the number of rows, containing the row medians.
*/
Expand Down

0 comments on commit 146772b

Please sign in to comment.