How to write a function of x in a function?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Angel Hiram Torres Mota
el 8 de Mzo. de 2020
Comentada: Angel Hiram Torres Mota
el 8 de Mzo. de 2020
Im just getting started in Matlab and I cant figure this out
I want to write a function of x and then the value of x inside a function
For example a = Evaluate((x^2)+1, 2)
And I want it to give me the answer. Which should be 5.
function [a] = Evaluate(f(x),x)
end
Thanks!
0 comentarios
Respuesta aceptada
Walter Roberson
el 8 de Mzo. de 2020
function a = Evaluate(f, x)
a = f(x);
end
Which might be called like
Evaluate(@(x) (x^2)+1, 2)
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!