Recent content by fizzkilla

  1. F

    MATLAB Need help with matlab code for Newton-raphson ( really bad)

    Ok then after now I get answers like inf inf and nan
  2. F

    MATLAB Need help with matlab code for Newton-raphson ( really bad)

    The code runs but I get the wrong answers can you take a look at the code for this . ANSWERS ****************** x(1) = 1.035 x(2) = 1.086 x(3) = 0.927 ****************** clc clear F = @(x) [15*x(1)+(x(2)^2)-4*x(3)-13;... (x(1)^2)+10*x(2)^2-x(3)-11...
  3. F

    MATLAB Need help with Matlab code for gauss siedel i get errors, need imediat help

    Now in my code I get another error Error in ==> gauss_sied at 8 xo = x_wo; Error in ==> HW_14 at 23 [x_wo, cnt, x_w,cntt] = gauss_sied(xo, es, lam, A, b);
  4. F

    MATLAB Need help with Matlab code for gauss siedel i get errors, need imediat help

    Please I need HELP IMEDIATLY This is the error message that i get ? Error using ==> gauss_sied Too many input arguments. Error in ==> HW_14 at 23 [x_wo, cnt, x_w,cntt] = gauss_sied(xo, A, b, es, lam); clc clearC = [-8 1 -2 -20 2 -6 -1 -38 -3 -1 7 -34]; A = C(:,1:end-1); b = C(:,end);nr =...
Back
Top