Top "Polynomial-math" questions

Polynomial Math is a subset of mathematics dealing with mathematical expressions constructed from variables and constants using only the operations of addition, subtraction, multiplication, and non-negative integer exponents.

Fitting polynomial model to data in R

I've read the answers to this question and they are quite helpful, but I need help particularly in R. I …

r curve-fitting data-analysis polynomial-math
Lagrange interpolation in Python

I want to interpolate a polynomial with the Lagrange method, but this code doesn't work: def interpolate(x_values, y_…

python interpolation polynomial-math
Calculation of CCITT standard CRC with polynomial x^16 + x^12 + x^5 + 1 in Java

I need help with calculating of CCITT standard CRC with polynomial x^16 + x^12 + x^5 + 1 (0x1081) in Java. I have tried …

java calculator polynomial-math crc16
Lagrange interpolation method

I use convolution and for loops (too much for loops) for calculating the interpolation using Lagrange's method , here's the main …

matlab interpolation polynomial-math
Implementing SSE 4.2's CRC32C in software

So I have a design which incorporates CRC32C checksums to ensure data hasn't been damaged. I decided to use …

c++ polynomial-math crc32
How can I create functions that handle polynomials?

I have these problems about polynomials and I've spent about 4 hours on this, but I just can't get it. I'm …

python polynomial-math evaluate multiplication
Equivalent of `polyfit` for a 2D polynomial in Python

I'd like to find a least-squares solution for the a coefficients in z = (a0 + a1*x + a2*y + a3*x**2 + …

python math numpy linear-algebra polynomial-math
What's the opposite of JavaScript's Math.pow?

I'm having a mental block here, and algebra not really being my thing, can you tell me how to re-write …

javascript math algebra polynomial-math
problem to determine the chromatic polynomial of a graph

for a homework graph theory, I'm asked to determine the chromatic polynomial of the following graph For the Descomposition Theorem …

graph-theory polynomial-math text-coloring
Need to fit polynomial using chebyshev polynomial basis

I have been fitting linear least-squares polynomials to data using the polyfit function in matlab. From what I read, this …

matlab curve-fitting polynomial-math least-squares