Community Profile

photo

liyana nadirah


Last seen: 거의 4년 전 2020년부터 활동

Followers: 0   Following: 0

통계

  • Thankful Level 2
  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


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

거의 4년 전 | 답변 수: 0 | 0

0

답변

질문


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;...

거의 4년 전 | 답변 수: 1 | 0

1

답변

질문


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]; ...

대략 4년 전 | 답변 수: 0 | 0

0

답변

질문


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...

대략 4년 전 | 답변 수: 0 | 0

0

답변

질문


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-(...

대략 4년 전 | 답변 수: 2 | 0

2

답변

질문


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...

대략 4년 전 | 답변 수: 0 | 0

0

답변

질문


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));...

대략 4년 전 | 답변 수: 1 | 0

1

답변

질문


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 ...

대략 4년 전 | 답변 수: 2 | 0

2

답변

질문


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...

대략 4년 전 | 답변 수: 0 | 0

0

답변