How to make a function and input another function

3 Ansichten (letzte 30 Tage)
marios
marios am 16 Jan. 2023
Beantwortet: Steven Lord am 16 Jan. 2023
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 ?

Antworten (1)

Steven Lord
Steven Lord am 16 Jan. 2023
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

Kategorien

Mehr zu Spline Postprocessing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by