Skip to content
Snippets Groups Projects
Commit ccc7e1c8 authored by Noels Ludovic's avatar Noels Ludovic
Browse files

Update generateRF.py

parent 5847ea11
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ if test=='cellRF':
# assume X1, X2 to be normally distributed variables
meanX = np.array([0.05]) # mean of variables
stdX = np.array([0.01]) # std of variables
R0_XY = np.array([[1]]) # covariance matrix between parameters C_XY (tau=0)
R0_XY = np.array([[1]]) # correlation matrix between parameters C_XY (tau=0)
elif test=='rnnRF':
mechDir='../rnnRF' # mechanical folder and file
nDim = 3 # no. dimensions
......@@ -41,7 +41,7 @@ elif test=='rnnRF':
meanX = np.array([0.5,10]) # mean of variables
stdX = np.array([0.05,0.1]) # std of variables
rho = 0.2
R0_XY = np.array([[1, rho], [rho, 1]]) # covariance matrix between parameters C_XY (tau=0)
R0_XY = np.array([[1, rho], [rho, 1]]) # correlation matrix between parameters C_XY (tau=0)
Nsim =10 #number of random fields to generate
Gaussian=0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment