Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers.
I have this set of variables: N = 250; % independent variables[0..10] x_1 = rand(N,1) * 10; x_2 = rand(N,1)开发者_开发知识库 * 10;
Is there开发者_StackOverflow中文版 a way to find a polynomial having specific roots i.e., 17, 29, 33 etc. The polynomial should satisfy for all these values.
I have an integer polynomial in four variables (w, x, y, and z) that I know can be written as an integer polynomial 开发者_如何学Pythonin these six variables:
Can anybody tell me how to solve polynomial equation of n degrees in JavaScript?Also how can I find antilogs 开发者_如何学JAVAin JavaScript?Is there any function by which I can find the antilog of any
I am trying to convert below matlab/octave function to C(Conven开发者_JAVA技巧tional way - understand the matlab function and code it in C from scratch). It is fitting a data to a gaussian curve using
I am studying for my algorithms class. I have a question in context to the Masters theorem: How is n.log2(n) polynomially larger than n^(log4(3))
for a homework graph theory, I\'m asked to determine the chromatic polynomial of the following graph For the Descomposition Theorem of Chromatic Polynomials. if G=(V,E), is a connected开发者_运维知
I have a set of X-Y values (i.e. a scatter plot) and I want a Pascal routine to generate the coefficients of a Nth orde开发者_运维问答r polynomial that fits those points, in the same way that Excel do
here is the add method for polynomial public Polynomilal add (Polynomial poly){ //getA()..etc getters for the coefficients of the polynomial.