change variable in function_handle

2 visualizaciones (últimos 30 días)
saeed rezaei
saeed rezaei el 19 de Mayo de 2021
Comentada: saeed rezaei el 19 de Mayo de 2021
hello all,
i wanna to change x in f=@(x)sinx to x+2 so that we have g=(x)sin(x+2)
how can i derive g from f in matlab?
thanks alot

Respuesta aceptada

the cyclist
the cyclist el 19 de Mayo de 2021
I think this is what you mean?
% Define f
f=@(x) sin(x);
% Derive g from f
g = @(x) f(x+2);
% Show that it gives expected result
f(2)
ans = 0.9093
g(0)
ans = 0.9093

Más respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 19 de Mayo de 2021
f=@(x)sin(x)
g = @(x)f(x+2)
Good luck

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by