I have evaluated a set of data (integers) in a polynomial function for example x^2+5x+4 and I would like to know if there is a way to obtain the function having only the evaluated set of data.
You quoted 2 degree polynomial in the example. The polynomial function can also be developed from data set. Look at the following document for further explanation. Hopefully it may help. Thank you.
Hola Ramón. Si tienes un conjunto de resultados de la función evaluada puedes utilizar alguna técnica de interpolación para obtener el polinomio de la función. En el siguiente link hay documentación sobre técnicas de interpolación. Saludos
You need to change your data according the number of variable and each variable give a unique power for example 3x + 5y + z become 3 + 5x + x2. the x replace with x0 , y to x and z to x2 .