Community Profile

photo

Hassan Eid


Last seen: 2 years ago Active since 2018

Followers: 0   Following: 0

Statistics

All
  • First Review
  • Solver

View badges

Feeds

View by

Answered
solving 3 nonlinear equation using newton-Raphson, but the code didn't work
i have worked on the above mentioned code and found an easy solution using fsolve: if true % function f=myfunction2(...

5 years ago | 0

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

5 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

5 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

5 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5 years ago

Question


solving 3 nonlinear equation using newton-Raphson, but the code didn't work
if true % clear all; syms x y z; f=[x^2-y^2+z^2 x*y+y^2-3*z x-x*z+y*z]; v=[x y z]; j=jacobian(f,v); Dx=[1; 1...

5 years ago | 1 answer | 0

1

answer