- 主题:有什么float精度的数学库吗
gsl 没有 single? 不太可能吧?
【 在 lobachevsky (罗巴切夫斯基) 的大作中提到: 】
: 如题
: 类似gsl
: 但是好像gsl只能是double
: ...................
--
FROM 114.246.76.*
支持 ieee 就会支持 single-precision 吧?
贴个例子呗,我学习一下。
ps
https://www.math.utah.edu/software/gsl/gsl-ref_476.html
【 在 lobachevsky (罗巴切夫斯基) 的大作中提到: 】
: 至少头文件里面全是double
: fftw好像还支持单精度,需要设一下
: 然而,我两个都要用,本来想改成single,改不下来了。。。。。
: ...................
--
修改:baptist FROM 114.246.76.*
FROM 114.246.76.*
?
https://stackoverflow.com/questions/22643585/gsl-floating-point-data-and-operations
ls /usr/include/gsl | grep float
gsl_block_complex_float.h
gsl_block_float.h
gsl_dft_complex_float.h
gsl_fft_complex_float.h
gsl_fft_halfcomplex_float.h
gsl_fft_real_float.h
gsl_matrix_complex_float.h
gsl_matrix_float.h
gsl_permute_complex_float.h
gsl_permute_float.h
gsl_permute_matrix_complex_float.h
gsl_permute_matrix_float.h
gsl_permute_vector_complex_float.h
gsl_permute_vector_float.h
gsl_sort_float.h
gsl_sort_vector_float.h
gsl_statistics_float.h
gsl_vector_complex_float.h
gsl_vector_float.h
【 在 lobachevsky (罗巴切夫斯基) 的大作中提到: 】
: 我简单看了一下
: 基本上就是在说支持IEEE754的那个编准
: 不瞒您说,单精度浮点数的加法乘法器我都写过
: ...................
--
FROM 114.246.76.*