Go to the source code of this file.
◆ main()
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
Definition at line 3 of file tutoAccessors.cpp.
4{
5
7 , 1.,2.,3.,4.
8 , 1.,1.,1.,1.;
9 std::cout << "a=\n" << a;
10
12 b[2] = 1.;
13 std::cout << "b=\n" << b;
14
16
18
19 c= -a - d + 3.;
c(2,2) = 5.;
20 std::cout <<
"c=\n" <<
c;
21
24 std::cout <<
"e=\n" <<
e;
25
28 std::cout <<
"f= " <<
f;
29 return 0;
30}
The MultidimRegression class allows to regress a multidimensional output variable among a multivariat...