摘要: #include <iostream>#include <malloc.h>#include <stdlib.h>#include <math.h>using namespace std;double *zuigan(double *a,double *b,double *c,double *f,int n) //追赶法求线性方程组{ double *x=NULL; double *p=NULL; double *q=NULL; x=(double*)malloc(sizeof(double)*n); p=(double*)malloc(size 阅读全文
posted @ 2011-10-26 22:57 Dsp Tian 阅读(5487) 评论(0) 推荐(0)