Changeset 26670


Ignore:
Timestamp:
11/26/21 07:46:12 (3 years ago)
Author:
vverjans
Message:

CHG: Debugging python test543 (3)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test543.py

    r26669 r26670  
    6969covclv[0,0]      = 1/10*covclv[0,0]
    7070covflmlt         = 0.05*np.identity(nb_flmlt)
    71 covglob          = np.zeros([6,6])
    72 covglob[0:2,0:2] = covtf
    73 covglob[2:4,2:4] = covclv
    74 covglob[4:6,4:6] = covflmlt
     71#covglob          = np.zeros([6,6])
     72#covglob[0:2,0:2] = covtf
     73#covglob[2:4,2:4] = covclv
     74#covglob[4:6,4:6] = covflmlt
    7575
     76#Hard-coding covariance matrix because python is complaining
     77covglob = np.array([[1e-4,0.,0.,0.,0.,0.],[0.,1e-4,0.,0.,0.,0.],[0.,0.,1e-2,0.,0.,0.],[0.,0.,0.,1e-1,0.,0.],[0.,0.,0.,0.,0.05,0.],[0.,0.,0.,0.,0.,0.05]])
    7678testchol = np.linalg.cholesky(covglob)
    7779print(testchol)
Note: See TracChangeset for help on using the changeset viewer.