how to pass parameters to a function handle in spmd block
1 回表示 (過去 30 日間)
古いコメントを表示
if I have defined a function si = @(x) 1.*(x>=0 & x<=0.5)+... -1.*(x>=0.5 & x<1)+... 0.*(x<0 | x>=1); and f(x)=@ x.*x; now as we know in spmd block you cannot define an anonymous function but you have to use a function handle.now in the spmd block I have to use si(2.^j.*x-k).so how should I pass these parameters j and k to si.(j and k are initialised in spmd block itself)
0 件のコメント
回答 (1 件)
Ritesh Naik
2016 年 4 月 18 日
You should be able to call using the function handle inside the spmd block by passing the parameters to it. You can find the example in one of your previous MATLAB Answers link:
Are you receiving any errors when you call the anonymous function using the function handle inside the spmd block?
If one of the parameters is anonymous function, you can wrap it in a helper function as suggested in the following link:
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!