getting function as an argument of function

34 次查看(过去 30 天)
hi, i am writing a matlab script that take function f which is a function of x and y and evaluate function f for some values of x and y. however i cannot get function, in my following code, f is seen as an array not a function. how can i get f. how can i evaluate at some points?
thanks.
function backEuler(f,x0,y0,h,N)
x(1)=x0;
y(1)=y0;
for i=1:N
x(i+1)=x(i)+h;
y_temp=y(i)+h*x(i)*x(i);
y(i+1)=y(i)+h*f(x(i+1),y_new);
end
plot(x,y);
end

采纳的回答

Naz
Naz 2011-11-13
Let's say your function is f(x,y)=2x+y. You need to create this function prior you send it to your backEuler:
f=@(x,y)2*x+y;
backEuler(f,2,3,0,0);
The above lines go into the Command Window. Now, your backEuler function could be a separate file .m-function:
function backEuler(f,x0,y0,h,N)
x(1)=x0;
y(1)=y0;
for i=1:N
x(i+1)=x(i)+h;
y_temp=y(i)+h*x(i)*x(i);
y(i+1)=y(i)+h*f(x(i+1),y_new);
end
plot(x,y);
end
Just file->new->function, paste the above script and save it as backEuler (make sure that matlab does not have the function with the same name). Also, to use this function you need to set matlab to a current folder. That's it.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by