This snippet shows the difference ``` > flamp.linspace(1, 2, num=1) array([mpfr('nan')], dtype=object) > np.linspace(1, 2, num=1) array([1.]) ```
This snippet shows the difference