Salome HOME
samples -> examples + moins de debug
[modules/adao.git] / examples / daSalome / test004_ADAO_scripts_for_JDC.py
1 #-*-coding:iso-8859-1-*-
2 import numpy
3 #
4 n = 100
5 #
6 # Definition of the Background as a vector
7 # ----------------------------------------
8 Background = n * [0]
9 #
10 # Definition of the Observation as a vector
11 # -----------------------------------------
12 Observation = n * "1 "
13 Observation = Observation.strip()
14 #
15 # Definition of the Background Error covariance as a matrix
16 # ---------------------------------------------------------
17 BackgroundError = numpy.identity(n)
18 #
19 # Definition of the Observation Error covariance as a matrix
20 # ----------------------------------------------------------
21 ObservationError = numpy.identity(n)
22 #
23 # Definition of the Observation Operator as a matrix
24 # --------------------------------------------------
25 ObservationOperator = numpy.identity(n)