Passing function with parameters to another function

Hi,
I am trying to create a function that accepts another function with its own parameters e.g. Func1(@(x)Func2(x,para1,para2,...etc)) Is this possible in Matlab? If yes, how?

Answers (1)

f1 = @(x,y) x(y) ;
f2 = @(y) sin(y) ;
f1(f2,pi/2)

3 Comments

This helps but the answer is: f1 = @(x,a) x.^2 + a; f2 = @(func,b) 2*func(10) - b; Call f2 ( @(x) f1(func,a),b)

Why do u have to put a dot in x.^2 + a;.I am new to Matlab

If x is an array to get element by element square, you have to put . i.e .^

Sign in to comment.

Tags

Asked:

on 17 Oct 2017

Commented:

on 1 Jul 2020

Community Treasure Hunt

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

Start Hunting!