Source code for mrinufft.trajectories.maths.primes
"""Prime-related functions."""
import numpy as np
[docs]
def compute_coprime_factors(Nc, length, start=1, update=1):
"""Compute a list of coprime factors of Nc.
Parameters
----------
Nc : int
Number to factorize.
length : int
Number of coprime factors to compute.
start : int, optional
First number to check. The default is 1.
update : int, optional
Increment between two numbers to check. The default is 1.
Returns
-------
list
List of coprime factors of Nc.
"""
count = start
coprimes = []
while len(coprimes) < length:
# Check greatest common divider (gcd)
if np.gcd(Nc, count) == 1:
coprimes.append(count)
count += update
return coprimes