numerical recipes in C source codes

源代码在线查看: rsolv.c

软件大小: 737 K
上传用户: xhaibo
关键词: numerical recipes source codes
下载地址: 免注册下载 普通下载 VIP

相关代码

				void rsolv(float **a, int n, float d[], float b[])
				{
					int i,j;
					float sum;
				
					b[n] /= d[n];
					for (i=n-1;i>=1;i--) {
						for (sum=0.0,j=i+1;j						b[i]=(b[i]-sum)/d[i];
					}
				}
				/* (C) Copr. 1986-92 Numerical Recipes Software "U,6VV'. */
							

相关资源