Skip to content

Commit a57d875

Browse files
committed
消灭乱码
1 parent fbcf9ba commit a57d875

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Approximation.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@
44
using namespace std;
55

66

7+
78
/*
8-
Pade±Æ½ü¼¼Êõ
9+
Pade逼近技术
910
*/
1011

1112
void Pade(int m, int n, double *a,double(*function)(double));
1213
void testPade();
1314

15+
1416
/*
15-
ChebyshevÓÐÀí±Æ½ü
17+
Chebyshev有理逼近
1618
*/
1719

1820
void Chebyshev(int m, int n, double *a,double(*function)(double));

FixedIterator.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ using namespace std;
44

55

66

7-
//˛ťśŻľăľü´úˇ¨p=g(p)
7+
8+
//不动点迭代法p=g(p)
89
double fixedIterator(double p0, double tol,int N);
910
double fixedIterator(double p0, double tol,int N, double(*function)(double p));

0 commit comments

Comments
 (0)