码迷,mamicode.com
首页 > 其他好文 > 详细

4.18n阶勒让德多项式求解

时间:2017-04-27 13:28:18      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:return   log   rand   std   using   int   name   namespace   编写   

Q:编写程序,输入正整数n和任意数x,求出勒让德多项式的值Pn(x)

 

#include <iostream>
#include<cstdio>
using namespace std;

float Rand(int n,float x) {
	if(n==0)	return 1;
	else if(n==1)	return x;
	else return ((2*n-1)*x-Rand(n-1,x)-(n-1)*Rand(n-2,x))/n;
	
} 
int main() {
	int n;
	float x,p;
	cin>>n>>x;
	p=Rand(n,x);
	cout<<p;
    return 0;
}

  

4.18n阶勒让德多项式求解

标签:return   log   rand   std   using   int   name   namespace   编写   

原文地址:http://www.cnblogs.com/dd2hm/p/6773603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!