-
Notifications
You must be signed in to change notification settings - Fork 2
/
Retrievaliteration.h
61 lines (57 loc) · 1.87 KB
/
Retrievaliteration.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* Retrievaliteration.h
*
* Copyright (c) 2011-2017 Stefan Bender
* Copyright (c) 2010-2011 Martin Langowski
*
* Initial version created on: 14.09.2010
* Author: Martin Langowski
*
* This file is part of scia_retrieval_2d
*
* scia_retrieval_2d is free software: you can redistribute it or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
* See accompanying COPYING.GPL2 file or http://www.gnu.org/licenses/gpl-2.0.html.
*/
#ifndef RETRIEVALITERATION_HH_
#define RETRIEVALITERATION_HH_
#include "MPL_Matrix.h"
int Retrievaliteration(MPL_Matrix &Dichten,
MPL_Matrix &Dichten_apriori,
MPL_Matrix &Saeulendichten,
MPL_Matrix &S_apriori,
MPL_Matrix &S_y,
MPL_Matrix &S_Breite,
MPL_Matrix &S_Hoehe,
const double &Lambda_Breite,
const double &Lambda_Hoehe,
MPL_Matrix &AMF,
class Konfiguration &Konf);
int Retrievaliteration_old(MPL_Matrix &Dichten, // Zur Sicherheit behalten
// Iteration über anpassen des apriori
MPL_Matrix &Dichten_apriori,
MPL_Matrix &Saeulendichten,
MPL_Matrix &S_apriori,
MPL_Matrix &S_y,
MPL_Matrix &S_Breite,
MPL_Matrix &S_Hoehe,
MPL_Matrix &S_letzte_Hoehe,
const double &Lambda_Breite,
const double &Lambda_Hoehe,
MPL_Matrix &AMF,
class Konfiguration &Konf);
#ifdef HAVE_EIGEN3
int Retrievaliteration_Eigen(MPL_Matrix &Dichten,
MPL_Matrix &Dichten_apriori,
MPL_Matrix &Saeulendichten,
MPL_Matrix &S_apriori,
MPL_Matrix &S_y,
MPL_Matrix &S_Breite,
MPL_Matrix &S_Hoehe,
const double &Lambda_Breite,
const double &Lambda_Hoehe,
MPL_Matrix &AMF,
class Konfiguration &Konf);
#endif /* HAVE_EIGEN3 */
#endif /* RETRIEVALITERATION_HH_ */