-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRetrievaliteration.h
41 lines (36 loc) · 1.08 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
/*
* Retrievaliteration.h
*
* Created on: 14.09.2010
* Author: martin
*/
#ifndef RETRIEVALITERATION_HH_
#define RETRIEVALITERATION_HH_
#include "MPL_Matrix.h"
#include "Konfiguration.h"
using namespace std;
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,
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,
Konfiguration &Konf);
#endif /* RETRIEVALITERATION_HH_ */