Home | History | Annotate | Download | only in auxiliary

Lines Matching refs:ncoeffs

105 #    ncoeffs  Array of BigFloats giving the coefficients of the numerator.
112 function ratfn_eval(ncoeffs::Array{BigFloat}, dcoeffs::Array{BigFloat},
114 return poly_eval(ncoeffs, x) / poly_eval(dcoeffs, x)
149 # ncoeffs Array of BigFloats giving the coefficients of the numerator.
155 function ratfn_to_string(ncoeffs::Array{BigFloat}, dcoeffs::Array{BigFloat})
158 return poly_to_string(ncoeffs)
160 return string("(", poly_to_string(ncoeffs), ")/(",
406 ncoeffs = all_coeffs[1:n+1]
408 return (ncoeffs, dcoeffs)
660 ncoeffs = outvector[1:n+1]
662 return ncoeffs, dcoeffs
718 ncoeffs = outvector[1:n+1]
723 last_e = (ratfn_eval(ncoeffs, dcoeffs, x) - y) * w(x,y) * -currsign
727 return ncoeffs, dcoeffs, last_e