anonymous-function()

Programming

anonymous-function() is a MATLAB®-compatible programming function for create an anonymous (lambda) function. the @ symbol followed by parameter list and expression creates a callable function object. anonymous functions capture workspace variables at creation time. Run it online in your browser with SimLab — free, no install, no license required.

Create an anonymous (lambda) function. The @ symbol followed by parameter list and expression creates a callable function object. Anonymous functions capture workspace variables at creation time.

Syntax

f = @(args) expression
@(x) x^2
@(x, y) x + y

Examples — run anonymous-function() in your browser

f = @(x) x^2;
f(5)
▶ Run
g = @(x, y) sqrt(x^2 + y^2);
g(3, 4)
▶ Run
k = 2;
h = @(x) k*x;  % captures k=2
h(10)
▶ Run

See Also

Frequently Asked Questions about anonymous-function()

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

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

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

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

What does anonymous-function() do?

Create an anonymous (lambda) function. The @ symbol followed by parameter list and expression creates a callable function object. Anonymous functions capture workspace variables at creation time. It is a MATLAB®-compatible programming function available in SimLab with the same calling syntax as MATLAB® — typically: f = @(args) expression.

Can I run anonymous-function() in my browser?

Yes. Open SimLab at simulations4all.com/simlab, write or paste code that calls anonymous-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.