20 lines
259 B
Plaintext
20 lines
259 B
Plaintext
'use strict';
|
|
|
|
// MAIN //
|
|
|
|
/**
|
|
* Evaluates a polynomial.
|
|
*
|
|
* @private
|
|
* @param {number} x - value at which to evaluate the polynomial
|
|
* @returns {number} evaluated polynomial
|
|
*/
|
|
function evalpoly() {
|
|
return 0.0;
|
|
}
|
|
|
|
|
|
// EXPORTS //
|
|
|
|
module.exports = evalpoly;
|