Questa pagina si riferisce alla release precedente. La corrispondente pagina in inglese è stata rimossa nella release attuale.
Creazione di funzioni
Le funzioni contengono uno o più comandi sequenziali e possono accettare input e restituire output. Per scrivere un programma con più righe di codice, creare una funzione nominata in un file.
In alternativa, se si desidera definire una funzione di una riga da passare a un’altra funzione, ad esempio un'espressione matematica da passare alla funzione integral
, è possibile creare una funzione anonima.
Sintassi del linguaggio MATLAB
function | Dichiarare il nome della funzione, gli input e gli output |
Argomenti
- 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.