CreateGaussianValuesForFactors
PURPOSE 
[Table] = CreateGaussianValuesForFactors(totfactors,J,T)
SYNOPSIS 
function [Table] = CreateGaussianValuesForFactors(totfactors,J,T)
DESCRIPTION 
CROSS-REFERENCE INFORMATION 
This function calls:
This function is called by:
SOURCE CODE 
0001 function [Table] = CreateGaussianValuesForFactors(totfactors,J,T)
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 for i=1:totfactors
0016 Jij = normrnd(J,1);
0017 Table{i}(1) = Jij;
0018 Table{i}(2) = -1*Jij;
0019 Table{i}(3) = -1*Jij;
0020 Table{i}(4) = Jij;
0021 Table{i} = exp(Table{i}/T);
0022 end,
Generated on Fri 04-Dec-2009 13:38:29 by m2html © 2003