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