Using costant value to Anonymous function

11 visualizaciones (últimos 30 días)
ELISABETTA COCCIA
ELISABETTA COCCIA el 24 de Oct. de 2019
Respondida: Sahithi Kanumarlapudi el 30 de Oct. de 2019
How can I write an anonymous function calling back a costant value?

Respuestas (1)

Sahithi Kanumarlapudi
Sahithi Kanumarlapudi el 30 de Oct. de 2019
Assuming by calling back a constant value’ you mean that the anonymous function returns a constant value the following code is an example
s = @(x) 5; % anonymous function
Now if you run
a(23)
Output is
5
Hope this helps!

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!