* @param kT the thermal energy used to calculate jump probabilities
* @return
*/
public IDoubleArray metropolisMC(IGriddedFunction f, double kT)
{
DiscretePotentialMetropolisMarkovChain mc = new DiscretePotentialMetropolisMarkovChain(f, kT);
return(mc.getTransitionMatrix());
}