please someone help with this
显示 更早的评论
how to give the value of mu and sigma from calc haralick to bayes
回答(2 个)
Dishant Arora
2014-3-14
function callingFunction()
% Your Code
mu = rand;
sigma = rand;
calledFunction()
function calledFunction()
mu = evalin('caller' , 'mu');
sigma = evalin('caller' , 'sigma');
Walter Roberson
2014-3-15
0 个投票
Don't do that. Return the two variables from calc_haralick and pass the values in to Bayescalc.
Or use one of the techniques shown in http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.3F
3 个评论
Dishant Arora
2014-3-15
编辑:Dishant Arora
2014-3-15
If only she wrote those attached function she must be knowing how to handle function with arguments and pass them, probably she doesn't want to have function with arguments and why evalin shouldn't be used??
Walter Roberson
2014-3-15
It appears to me that at least one of the routines was provided for the user and that the user is having difficulty with the rest.
yuvashree
2014-3-15
类别
在 帮助中心 和 File Exchange 中查找有关 Agriculture 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!