Home | History | Annotate | Download | only in polynomials

Lines Matching refs:length

32  * Note that the length of a[] is one more than the length of c[]</p>
77 this.a = new double[a.length];
78 this.c = new double[c.length];
79 System.arraycopy(a, 0, this.a, 0, a.length);
80 System.arraycopy(c, 0, this.c, 0, c.length);
102 return c.length;
113 double[] out = new double[a.length];
114 System.arraycopy(a, 0, out, 0, a.length);
126 double[] out = new double[c.length];
127 System.arraycopy(c, 0, out, 0, c.length);
142 double[] out = new double[coefficients.length];
143 System.arraycopy(coefficients, 0, out, 0, coefficients.length);
164 int n = c.length;
211 if (a.length < 1 || c.length < 1) {
215 if (a.length != c.length + 1) {
218 a.length, c.length);