Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
7answers
5k views

How to find minimum of nonlinear, multivariate function using Newton's method (code not linear algebra)

I'm trying to do some parameter estimation and want to choose parameter estimates that minimize the square error in a predicted equation over about 30 variables. If the equation were linear, I would ...
4
votes
2answers
145 views

Newtons Method in Python

I'm writing a program in python that will solve for zeros using newtons method. I finished writing the rough version of it, then realized a couple different things and was wondering if I need to ...
3
votes
1answer
188 views

Python non linear equation with lagrangian multipliers estimation

i 've been struggling for days on this thing....but to no avail. I'm not very good at difficult math let alone this kind of level of difficulty. I was trying to implement the maximum entropy ...
2
votes
1answer
77 views

Error in bigdecimal/newton for XIRR implementation

I would like to use the bigdecimal/newton module in Ruby for an implementation of XIRR. I have written a script to try it out by following this example. When I run the code (Ruby 1.9.2 on Mac OS X ...
2
votes
2answers
471 views

Newton's method with specified digits of precision

I'm trying to write a function in Java that calculates the n-th root of a number. I'm using Newton's method for this. However, the user should be able to specify how many digits of precision they ...
1
vote
4answers
111 views

Finding square root of 2 upto more than 100 decimal places

i tried to get this work by using Newton's method as described here: wiki using the following code, but the problem is that it is giving accurate result only upto 16 decimal places. I tried to ...
1
vote
2answers
64 views

print arbitrary amount of digits of float

How can I print more than about 10 digits of a float in python? Right now, when do print sqr_newton(10, 3, 0.001) (where sqr_newton is newton's algorithm for square roots; returns a float) it only ...
1
vote
2answers
62 views

Prevent Matlab from rounding output?

Im running a simple script to estimate roots for a function. Everything works great, each iteration of the algorithm prints off the current x and f(x), but when the script finishes and sets the final ...
1
vote
3answers
155 views

ZeroDivisionError: float division

I have got this code to solve Newton's method. But it gives a zero division error. I cannot figure out what is wrong. Thank you. import copy tlist = [0.0, 0.12, 0.16, 0.2, 0.31, 0.34] # list ...
1
vote
1answer
556 views

Implementing a Newton-Raphson iteration method

I'm trying to implement a backward Euler Scheme using the Newton Raphson iteration. I understand that with each iteration, one makes an initial guess, calculates the residual and solve for the change. ...
1
vote
1answer
614 views

Conversion between RGB and RYB color spaces

I am currently trying to convert colours between RGB (red, green, blue) colour space and RYB (red, yellow, blue) colour space and back again. Based on the details in the following paper, I am able ...
1
vote
0answers
496 views

Could you explain how Newton-Raphson for a set of equations works (code inside)? [closed]

I need to use Newton-Raphson for a set of equations. I found this code, which appears to be from Numerical Recipes. The code compiles, and runs. My problem is this is above my level of math. I don't ...
0
votes
3answers
70 views

Explanation of newton's method example on java

http://introcs.cs.princeton.edu/java/13flow/Sqrt.java.html: public class Sqrt { public static void main(String[] args) { // read in the command-line argument double c = ...
0
votes
4answers
78 views

About MIT 6.00 course lec06--Newton's method

I have tried to code in my own way, but found I got the wrong answer. I have read this page. And try to start the process: f(x)=x^2-e The math: So there is my code: def sqrtRootNR(num, count, ...
0
votes
1answer
80 views

Python newtons method issues

I have been asking the community alot for help and i appreciate it all So ive been working on a program that solves newtons method in python but for some reason its not working could someone look ...
0
votes
2answers
79 views

JSON nested classed, parent reference

i'm trying to deserialize some JSON into objects it works perfectly .. almost ... i'm using the NewtonSoft.Json lib in C# i have a serie of nested classes. For example: class car (string prop, ...
0
votes
2answers
1k views

Newton Raphsons method in Matlab?

Newtons-Raphsons method is easy to implement in Mathematica but in Matlab it seems a bit difficult. I don't get if I can pass a function to a function and how to use the derivative as a function. ...
0
votes
1answer
297 views

How to produce an interpolated function from a given x and f(x) points using Newton polynomial in Java?

Here's my code: Double[] x = {1.0, 2.0, 3.0}; Double[] fx = {1.0, 8.0, 27.0}; s = x.length; Double[][] newton = new Double[(2*s)-1][s+1]; for(int i=0, z=0;i<s;i++,z+=2){ ...
0
votes
3answers
328 views

What does this C idiom mean? [closed]

Possible Duplicate: John Carmack’s Unusual Fast Inverse Square Root (Quake III) I came across this piece of code a blog recently - it is from the Quake3 Engine. It is meant to ...
0
votes
0answers
221 views

Matrix power to minimize error in neural network using Newton's method

I have a non square matrix A and i want to know A^2. Actually i am working in neural network newton optimization method using second order Taylor series such that I want to multiply the hessian ...
0
votes
1answer
529 views

Problems with Newton's Method for finding coefficient and Hessian

I am trying to write a function that uses Newton's method (coefficients+(inverse hessian)*gradient) to iteratively find the coefficients for a loglinear model. I am using the following code: ...
-4
votes
3answers
871 views

C++ help (Bisection/Newtons Method)

I need to write a class that includes a bisection and newton function. I understand how each method works, I just need to know how to write a class that passes the parameters of each function ...