About 34,400 results
Open links in new tab
  1. Functions - MATLAB & Simulink - MathWorks

    MATLAB ® includes a wide range of predefined functions for computational tasks. For basics on how to call these functions, see Calling Functions. As you write code, you can define your own functions to …

  2. at symbol - Create anonymous functions and function handles, call ...

    The at symbol (@) creates handles to anonymous and named functions, and is also used to call superclass methods from within a subclass.

  3. MATLAB - Functions - Online Tutorials Library

    A function is a group of statements that together perform a task. In MATLAB, functions are defined in separate files. The name of the file and of the function should be the same.

  4. Functions in MATLAB - GeeksforGeeks

    Aug 16, 2021 · MATLAB functions must be defined in separate files and function name must match with the file name. Let's also see the few more ways of defining a function as per the user needs.

  5. Easy Guide to MATLAB Functions for Beginners

    Nov 13, 2025 · Description:Learn how to create and use functions in MATLAB step-by-step! 🚀In this tutorial, we explain what functions are, why they’re important, and how t...

  6. How to create a function in MATLAB - GeeksforGeeks

    May 6, 2021 · A function is a block of statements that intend to perform a specific task. Functions allow the users to reuse the code frequently. MATLAB has several predefined functions which are ready to …

  7. How to Call a Function in MATLAB: Simple Walkthrough - wikiHow

    Mar 6, 2025 · How to Call a Function in MATLAB Start your script with function followed by the name you want to assign it. After writing your function in the script editor, call it using the format …

  8. How to Create a Function in MATLAB - Delft Stack

    Feb 2, 2024 · A function in Matlab consists of mainly three things output, input, and function name. To define a function, we use the variable function, and then we define the outputs, the function name, …

  9. MATLAB - Wikipedia

    MATLAB (Matrix Laboratory) [19] is a proprietary multi-paradigm programming language and numeric computing environment developed by MathWorks. MATLAB allows matrix manipulations, plotting of …

  10. Writing and Using Functions - University of British Columbia

    Matlab uses call-by-value semantics, meaning that (conceptually) all arguments are copied into the formal parameters of the function. That is, call-by-reference (pointers) is not used (although Matlab …