Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in docstrings #624

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class IterativeSENSEReconstruction(RegularizedIterativeSENSEReconstruction):
r"""Iterative SENSE reconstruction.

This algorithm solves the problem :math:`min_x \frac{1}{2}||W^\frac{1}{2} (Ax - y)||_2^2`
This algorithm solves the problem :math:`\min_{x} \frac{1}{2}||W^\frac{1}{2} (Ax - y)||_2^2`
by using a conjugate gradient algorithm to solve
:math:`H x = b` with :math:`H = A^H W A` and :math:`b = A^H W y` where :math:`A` is the acquisition model
(coil sensitivity maps, Fourier operator, k-space sampling), :math:`y` is the acquired k-space data and :math:`W`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class RegularizedIterativeSENSEReconstruction(DirectReconstruction):
r"""Regularized iterative SENSE reconstruction.

This algorithm solves the problem :math:`min_x \frac{1}{2}||W^\frac{1}{2} (Ax - y)||_2^2 +
This algorithm solves the problem :math:`\min_{x} \frac{1}{2}||W^\frac{1}{2} (Ax - y)||_2^2 +
\frac{1}{2}\lambda||Bx - x_0||_2^2`
by using a conjugate gradient algorithm to solve
:math:`H x = b` with :math:`H = A^H W A + \lambda B^H B` and :math:`b = A^H W y + \lambda B^H x_0` where :math:`A`
Expand Down
2 changes: 1 addition & 1 deletion src/mrpro/data/Rotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,7 @@ def as_euler(
shape `(3,)` or `(..., 3)`, depending on shape of inputs used to initialize object.
The returned angles are in the range:

- First angle belongs to`` [-180, 180]`` degrees (both inclusive)
- First angle belongs to ``[-180, 180]`` degrees (both inclusive)
- Third angle belongs to ``[-180, 180]`` degrees (both inclusive)
- Second angle belongs to:

Expand Down