calc_radial_trajectory#
- pypulseqpp.calc_radial_trajectory()[source]#
Return one full radial spoke through the centre of k-space.
- Parameters:
- Returns:
(num_points, 2), in 1/m, from-kmaxto+kmaxalong x.- Return type:
- Raises:
ValueError – If
fovis not isotropic or not positive, ifmatrixis not positive, or ifnum_pointsis below 2.
Examples
>>> import pypulseqpp as pp >>> spoke = pp.calc_radial_trajectory(0.256, 128) >>> spoke.shape, float(spoke[-1, 0]) ((128, 2), 250.0)