Skip to content

Commit f35187b

Browse files
committed
small corrections to docs
1 parent 4fd1a3f commit f35187b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

conda/recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ requirements:
2222
- setuptools-git-versioning
2323
run:
2424
- python
25-
- numpy>= 1.20, <= 1.25
25+
- numpy>= 1.20, <= 1.26
2626
- cupy=12.3.0
2727
- astra-toolbox
2828
- nvtx

docs/source/reference/methods_list/rescale_to_int.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ clipping of the data and therefore the loss of the information.
2323

2424
* :code:`bits` defines the number of bits in the resulting data. The input can be any data type and will be rescaled into unsigned integer of 8, 16 or 32 bit type.
2525

26-
* :code:`perc_range_min` defines the lower cutoff point in the input data, in percent of the data range (defaults to 0). The lower bound is computed as :math:`\frac{\textrm{perc_range_min} * (\max-\min)}{100} + \min`.
26+
* :code:`perc_range_min` defines the lower cutoff point in the input data, in percent of the data range (defaults to 0). The lower bound is computed as :math:`\frac{\textrm{perc_range_min} * (\max-\min)}{100} + \min`. Note that :math:`\max` and :math:`\min` values will be automatically estimated from the input data, unless they are provided with the `glob_stats` optional parameter.
2727

2828
* :code:`perc_range_max` defines the upper cutoff point in the input data, in percent of the data range (defaults to 100). The higher bound is computed as :math:`\frac{\textrm{perc_range_max} * (\max-\min)}{100} + \min`.
2929

0 commit comments

Comments
 (0)