| 120 | // ---------------------------------------------------------------------------------------- |
| 121 | |
| 122 | matrix<double,0,1> chebyquad_start (int n) |
| 123 | { |
| 124 | int i; |
| 125 | matrix<double,0,1> x(n); |
| 126 | |
| 127 | for (i = 1; i <= n; ++i) |
| 128 | x(i-1) = double ( i ) / double ( n + 1 ); |
| 129 | |
| 130 | return x; |
| 131 | } |
| 132 | |
| 133 | // ---------------------------------------------------------------------------------------- |
| 134 |
no test coverage detected