SciPy: What are the arguments in `scipy.special.fresnel(x[, out1, out2])`?
问题 I am trying to plot a clothoid function using SciPy. Here is the syntax for the Fresnel integrals but I cannot understand what are the arguments x , out1 , out2 in scipy.special.fresnel(x[, out1, out2]) ? Formulas in the description are about t and z , which are not in the function. 回答1: The arguments out1 and out2 are optional. You can use s, c = fresnel(x) The argument z shown in the docstring is the x argument. That is an unfortunate discrepancy--the docstring should be consistent with the