0

我对 matlab 完全陌生,我似乎找不到任何有关此的信息。我该如何实施?

function [R] = GetY(func,x)
R = func(x);
end;

example: getY(5x+2, 1)
R = 5(1)+2 = 7
4

1 回答 1

3

使用function_handle

function R = GetY(func,x)
    R = func(x);
end

...

>> GetY(@sin, pi/2)
ans = 
    1
>>
>> GetY(@(x) x.^2 + 4, 2)
ans = 
    8
于 2013-09-09T08:16:39.160 回答