please someone help with this

1 view (last 30 days)
yuvashree
yuvashree on 14 Mar 2014
Commented: yuvashree on 15 Mar 2014
how to give the value of mu and sigma from calc haralick to bayes

Answers (2)

Dishant Arora
Dishant Arora on 14 Mar 2014
function callingFunction()
% Your Code
mu = rand;
sigma = rand;
calledFunction()
function calledFunction()
mu = evalin('caller' , 'mu');
sigma = evalin('caller' , 'sigma');

Walter Roberson
Walter Roberson on 15 Mar 2014
Don't do that. Return the two variables from calc_haralick and pass the values in to Bayescalc.
  3 Comments
Walter Roberson
Walter Roberson on 15 Mar 2014
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
yuvashree on 15 Mar 2014
Dear sir, i have mailed you the details in personal. kindly check your mail.

Sign in to comment.

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!