Feeds
질문
How i can use this code with the funz=3*x^2
function [t,y]=euler_FORWARD(funz,intervallo,y0,ninterval) t0=intervallo(1) tend=intervallo(2) h==(tend-t0)/ninterval t=t0 ...
5년 초과 전 | 답변 수: 0 | 0
0
답변질문
fzero of function 3 variables
function dydt = eqdiff(t,y,lambda) dydt=-lambda*y lambda=1 I write fzero( @eqdiff(t,y,lambda),2) matlab give me errore m...
거의 6년 전 | 답변 수: 2 | 0
2
답변질문
matlab give me error
function hdot = height(t,h) hdot = -(0.0334*sqrt(h))/(10*h-h^2); [t, h] = ode45 (@height, [0 2475], 9); plot(t,h),xlabel('Tim...
거의 6년 전 | 답변 수: 1 | 0
1
답변질문
matlab give me error when i use fzero to calculate zero of function
fzero of function fun = @sin; % function x0 = 3; % initial point x = fzero(fun,x0)
거의 6년 전 | 답변 수: 1 | 0

