How to make a function and input another function

1 次查看(过去 30 天)
i want to make a function and use as input another function . in the second function i will have an equation , at the first one i will have a type . so i can use diferent functions to caldulate the same . for example
function [i] = bbb (r,a,b)
i=@r(a)-@r(b)
end
as r i will use humps or fun or something like that
so when i call it i will write :
bbb (humps,0.5,1)
how can i write it corectly ?

回答(1 个)

Steven Lord
Steven Lord 2023-1-16
I think what you want is:
y = bbb(@humps, 0.5, 1)
y = 3.0000
function [i] = bbb (r,a,b)
i=r(a)-r(b);
end

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by