Cette page s'applique à la version précédente. La page correspondante en anglais a été supprimée de la version actuelle.
Créer des fonctions
Les fonctions contiennent une ou plusieurs commandes séquentielles. Elles peuvent accepter des entrées et renvoyer des sorties. Pour écrire un programme comportant plusieurs lignes de code, créez une fonction nommée dans un fichier.
Si vous souhaitez définir une fonction d’une seule ligne à passer à une autre fonction, par exemple une expression mathématique à passer à la fonction integral
, vous pouvez également créer une fonction anonyme.
Syntaxe du langage MATLAB
function | Déclarer le nom, les entrées et les sorties d'une fonction |
Rubriques
- Create Functions in Files
Store multiple commands in a program file that can accept inputs and return output.
- Types of Functions
There are several types of functions available with MATLAB®, including local functions, nested functions, private functions, and anonymous functions.
- Function Precedence Order
To determine which function to call when multiple functions in the current scope have the same name, MATLAB uses function precedence order.
- Add Help for Your Program
Add help text to your program that displays in the Command Window when you use the
help
function. - Indexing into Function Call Results
This topic describes how to dot index into temporary variables created by function calls.
- Configure the Run Button for Functions
Run functions that require some initial setup from the Editor by configuring the Run button.