Nested function global variable

13 ビュー (過去 30 日間)
Robbie Peck
Robbie Peck 2015 年 10 月 15 日
編集済み: Thorsten 2015 年 10 月 15 日
function T = fun(theta)
global m
m = theta^2;
T = quad(@fun2,0,1)
end
function out = fun2(t)
out=( (1-m*t^2)*(1-t^2) );
end
I have the two functions above. When I call for fun, it does not seem to be working. I am new to Matlab so it would be greatly appreciated if someone could help my understanding. Thanks

採用された回答

Thorsten
Thorsten 2015 年 10 月 15 日
編集済み: Thorsten 2015 年 10 月 15 日
Add global m to your fun2; I also used point-wise multiplication and exponentiation to make it work.
function T = fun(theta)
global m
m = theta^2;
T = quad(@fun2,0,1)
end
function out = fun2(t)
global m
out=( (1-m*t.^2).*(1-t.^2) );
end
Alternatively, you could define fun2 as an anonymous function; note that here fun2 is already a function handle, so you have to pass with without the @ to quad:
function T = fun(theta)
global m
m = theta^2;
fun2 = @(t) (1-m*t.^2).*(1-t.^2)
T = quad(fun2,0,1)
end
  1 件のコメント
Robbie Peck
Robbie Peck 2015 年 10 月 15 日
Thank you- It's the point wise stuff I'm not used to. I'm used to R!

サインインしてコメントする。

その他の回答 (1 件)

Julia
Julia 2015 年 10 月 15 日

カテゴリ

Help Center および File ExchangeDirected Graphs についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by