6 lines
98 B
Text
6 lines
98 B
Text
|
|
function r = computeit2(f, g, v)
|
||
|
|
r = f(feval(g, v));
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
computeit2(@exp, "sin", pi/3)
|