function()

Programming

function() is a MATLAB®-compatible programming function for define a named function. the function body can contain any simlab statements. single output uses "function out = name(...)". multiple outputs use "[a, b] = name(...)". functions without output use "function name(...)". functions can be nested inside other functions — the inner function closes over the outer scope: it reads and can mutate the outer function's local variables. see "nestedfunctions". Run it online in your browser with SimLab — free, no install, no license required.

Define a named function. The function body can contain any SimLab statements. Single output uses "function out = name(...)". Multiple outputs use "[a, b] = name(...)". Functions without output use "function name(...)". Functions can be nested inside other functions — the inner function closes over the outer scope: it reads and can mutate the outer function's local variables. See "nestedFunctions".

Syntax

function out = name(args) ... end
function [a, b] = name(x, y) ... end
function name(args) ... end

Examples — run function() in your browser

function y = square(x)
  y = x^2;
end
square(5)
▶ Run
function [s, p] = stats(x)
  s = sum(x);
  p = prod(x);
end
[s, p] = stats([1, 2, 3])
▶ Run

See Also

Frequently Asked Questions about function()

Is the function() function free to use in SimLab?

Yes. SimLab is 100% free — no signup, no license, and no usage limits. You can run function() and 510+ other MATLAB®-compatible functions directly in your browser at simulations4all.com/simlab.

Do I need to install MATLAB to use function()?

No. SimLab runs entirely in your web browser with zero installation. The function() function works without any MATLAB® license or software download.

What does function() do?

Define a named function. The function body can contain any SimLab statements. Single output uses "function out = name(...)". Multiple outputs use "[a, b] = name(...)". Functions without output use "function name(...)". Functions can be nested inside other functions — the inner function closes over the outer scope: it reads and can mutate the outer function's local variables. See "nestedFunctions". It is a MATLAB®-compatible programming function available in SimLab with the same calling syntax as MATLAB® — typically: function out = name(args) ... end.

Can I run function() in my browser?

Yes. Open SimLab at simulations4all.com/simlab, write or paste code that calls function(), and run it. Execution happens locally in your browser — no data leaves your machine.

Try SimLab — MATLAB®-compatible, free, in your browser

510+ functions. Runs in your browser. No install. No license.

Open SimLab

MATLAB® is a registered trademark of The MathWorks, Inc. SimLab is an independent project by Simulations4All and is not affiliated with, endorsed by, or sponsored by The MathWorks, Inc.

Stay Updated

Get notified about new simulations and tools. We send 1-2 emails per month.