Main Content

La traduction de cette page n'est pas à jour. Cliquez ici pour voir la dernière version en anglais.

Fonctions handles

Variables permettant d’invoquer indirectement une fonction

Un handle de fonction est un type de données MATLAB® qui représente une fonction. Une utilisation courante des handles de fonction consiste à passer une fonction à une autre fonction. Par exemple, il est possible d’utiliser des handles de fonction comme arguments d’entrée de fonctions qui évaluent des expressions mathématiques sur une plage de valeurs.

Les handles de fonction peuvent représenter des fonctions nommées ou anonymes. Pour créer un handle de fonction, utilisez l’opérateur @. Par exemple, créez un handle vers une fonction anonyme qui évalue l’expression x2 – y2 :

f = @(x,y) (x.^2 - y.^2);
Pour plus d’informations, consultez Create Function Handle.

Fonctions

function_handleHandle to function
fevalEvaluate function
func2strConstruct character vector from function handle
str2funcConstruct function handle from character vector
localfunctionsFunction handles to all local functions in MATLAB file
functionsInformation about function handle

Rubriques

  • Create Function Handle

    Use a function handle to create an association to a named function or an anonymous function. Then, you can indirectly call the representative function.

  • Pass Function to Another Function

    You can use function handles as input arguments to functions that evaluate mathematical expressions over a range of values, such as integral and fzero.

  • Parameterizing Functions

    This topic explains how to store or access extra parameters for mathematical functions that you pass to functions such as fzero, ode45, or integral.

  • Call Local Functions Using Function Handles

    If a function returns handles to local functions, you can call the local functions outside of the main function. This approach allows you to have multiple, callable functions in a single file.

  • Compare Function Handles

    The result of comparing equality of function handles depends on what the handle represents and when you created it.