About 366,000 results
Open links in new tab
  1. Function Handles - MATLAB & Simulink - MathWorks

    For example, you can use function handles as input arguments to functions that evaluate mathematical expressions over a range of values. Function handles can represent either …

  2. matlab - What is a function handle and how is it useful ... - Stack ...

    May 16, 2017 · The function handle operator in MATLAB acts essentially like a pointer to a specific instance of a function. Some of the other answers have discussed a few of its uses, …

  3. Function Handles in MATLAB - GeeksforGeeks

    Apr 26, 2025 · Function Handles are a data type of MATLAB which represents a function. They store a function just like an ordinary variable store numeral or alphabetic data. An example of …

  4. MATLAB Function Handles - Online Tutorials Library

    A function handle in MATLAB is a data type designed to store a reference to a function. Using a function handle allows you to invoke the function indirectly, regardless of where it's called in …

  5. function_handle (@) (MATLAB Functions) - Northwestern …

    handle = @functionname returns a handle to the specified MATLAB function. A function handle captures all the information about a function that MATLAB needs to execute that function. …

  6. Use a function handle inside another function handle - MATLAB

    Jun 24, 2015 · I define a function handle y=@(x)f(x); Now I want to define another function handle z as z = @(x)y.*sin(x) so that I can integrate: int = integral(z,x1,x2). Matlab does not allow me …

  7. Create Function Handle - MathWorks

    Function handles are variables that you can pass to other functions. For example, calculate the integral of x2 on the range [0,1]. Function handles store their absolute path, so when you have …

  8. Function Handles - MATLAB & Simulink - MatlabSolutions

    A typical use of function handles is to pass a function to another function. For example, you can use function handles as input arguments to functions that evaluate mathematical expressions …

  9. How to create a function handle of a function with both new …

    Sep 2, 2021 · I am trying to create a function and a function handle of the said function where the function takes in output parameters from the previous call and new input parameters and …

  10. Create Function Handle - MATLAB & Simulink - MathWorks

    Function handles are variables that you can pass to other functions. For example, calculate the integral of x2 on the range [0,1]. Function handles store their absolute path, so when you have …