GNU Scientific Library

来自开放百科 - 灰狐
(版本间的差异)
跳转到: 导航, 搜索
 
(Example)
 
(未显示1个用户的2个中间版本)
第1行: 第1行:
 +
{{SeeWikipedia}}
  
 
== Example ==
 
== Example ==
第29行: 第30行:
 
http://www.gnu.org/software/gsl/
 
http://www.gnu.org/software/gsl/
  
[[Category:Free development toolkits and libraries]]
+
[[category:GNU]]
 +
[[category:software development]]

2013年2月20日 (三) 01:53的最后版本

Wikipedia-35x35.png 您可以在Wikipedia上了解到此条目的英文信息 GNU Scientific Library Thanks, Wikipedia.

[编辑] Example

The following example program calculates the value of the Bessel function for 5 [1]:

#include <stdio.h>
#include <gsl/gsl_sf_bessel.h>

int
main (void)
{
  double x = 5.0;
  double y = gsl_sf_bessel_J0 (x);
  printf ("J0(%g) = %.18e\n", x, y);
  return 0;
}

The example program has to be linked to the GSL library upon compilation:

g++ -L/usr/local/lib example.c -lgsl -lgslcblas  -lm

The output is shown below, and should be correct to double-precision accuracy:

J0(5) = -1.775967713143382920e-01

http://www.gnu.org/software/gsl/

分享您的观点
个人工具
名字空间

变换
操作
导航
工具箱