Can anybody tell me how to solve polynomial equation of n degrees in JavaScript? Also how can I find antilogs in JavaScript? Is there any function by which I can find the antilog of any number?
feedback
|
Thats for polynomials
Thats for logs.
You have to come up with some function to solve antilog | ||||
|
feedback
|
|
To find the antilog(x) you just raise your base (usually 10) to the power of x. In JavaScript:
If you have another base, just put it in place of 10 in the above code snippet. | |||
|
feedback
|