Community Profile

photo

raffaele orlando


Last seen: 4 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


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

4 years ago | 0 answers | 0

0

answers

Question


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

4 years ago | 2 answers | 0

2

answers

Question


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

4 years ago | 1 answer | 0

1

answer

Question


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)

4 years ago | 1 answer | 0

1

answer