Community Profile

photo

liyana nadirah


Last seen: casi 4 años hace Con actividad desde 2020

Estadísticas

  • Thankful Level 2
  • Thankful Level 1

Ver insignias

Content Feed

Ver por

Pregunta


how to plot error for non linear shooting method
% NONLINEAR SHOOTING ALGORITHM % % To approximate the solution of the nonlinear boundary-value problem % % Y'' = F(...

casi 4 años hace | 0 respuestas | 0

0

respuestas

Pregunta


how to solve nonlinear shooting method
f = @(x,y,z) ((z^2)*(x^-3))-(9*(y^2)*(x^-5))+(4*x); fy = @(x,y,z) -(18*y*(x^-5)); fz = @(x,y,z) (2*z*(x^-3)); a=1; b=2;...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


how to convert this coding to broyden method coding
x0=[1 1 1]'; x =x0; for it=0:2 it=it+1; F=[10*x(1)-2*x(2)^2+x(2)-2*x(3)-5 8*x(2)^2+4*x(3)^2-9 8*x(2)*x(3)+4]; ...

casi 4 años hace | 0 respuestas | 0

0

respuestas

Pregunta


how to make for loop for newton method
x1=1; x2=1; x3=1; b=[(10*x1)-(2*(x2)^2)+(1*x2)-(2*x3)-5; (8*(x2)^2)+(4*(x3)^2)-9; (8*x2*x3)+4]; a=[10 -4*x(2)+1 -2; 0 16*x(2...

alrededor de 4 años hace | 0 respuestas | 0

0

respuestas

Pregunta


how to do a loop and call a function
function [g1]=func2(L,D,P,r,c,a,t) g1=(((3*c)/(P*r))*((((D*(t-a))/L))-(L/6))); end function [g2]=func3(L,D,P,r,c,Y,t) g2=1-(...

alrededor de 4 años hace | 2 respuestas | 0

2

respuestas

Pregunta


ho to apply upper boundary for cumulaitive percentage
l=input('l=') g = zeros(1, length(0:100));% initialize g with 0's of length t c = 1;% counter variable for t=0:100 if t...

alrededor de 4 años hace | 0 respuestas | 0

0

respuestas

Pregunta


how to get cumulative percentage
how to get the cumulative percentage of g using this coding and plot it against t? l=input('l=') g = zeros(1, length(0:100));...

alrededor de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


plot graph for nested if
l=input('l='); for t=0:100 if t>2 g=((3/(309*0.0014))*((((0.0000126*(t-2))/l)*80.4)-(l/6))); elseif t>80 ...

alrededor de 4 años hace | 2 respuestas | 0

2

respuestas

Pregunta


nested if or piecewise function
can someone explain to me how to do matlab coding for this piecewise function. did i have to do nested if coding to solve this...

alrededor de 4 años hace | 0 respuestas | 0

0

respuestas