set_origin
- sherpa.utils.set_origin(dims, maxindex=None)[source] [edit on github]
Return the position of the origin of the kernel.
- Parameters:
- Returns:
- cs
ndarrayornumber The coordinates of the center, matching the input dims format.
- cs
Examples
>>> set_origin(12) 5
>>> set_origin([12]) array([5])
>>> set_origin([12], 4) array([4])
>>> set_origin([12, 13]) array([5, 6])
>>> set_origin([12, 13], 42) array([6, 3])