Passing function with parameters to another function

7 visualizzazioni (ultimi 30 giorni)
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?

Risposte (1)

KSSV
KSSV il 17 Ott 2017
f1 = @(x,y) x(y) ;
f2 = @(y) sin(y) ;
f1(f2,pi/2)
  3 Commenti
Amjith Shaheer
Amjith Shaheer il 1 Lug 2020

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

KSSV
KSSV il 1 Lug 2020
If x is an array to get element by element square, you have to put . i.e .^

Accedi per commentare.

Categorie

Scopri di più su Programming in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by