On 09/02/10 17:06, Christopher Barker wrote:
> Does the clib for a compiler that provides a float64 also provide an
> atof() function that supports it? Its seems that it should.

I think so, for example in C I can do:

fscanf(fp, "%Lf %Lf %Lf", &x, &y, &z);

where x,y,z are "long doubles".

The equivalent for regular doubles would be:

fscanf(fp, "%lf %lf %lf", &x, &y, &z);

_______________________________________________
NumPy-Discussion mailing list
[email protected]
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to