mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Extend tutorial page 5: Advanced initialization.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
ArrayXXf table(10, 4);
|
||||
table.col(0) = ArrayXf::LinSpaced(10, 0, 90);
|
||||
table.col(1) = M_PI / 180 * table.col(0);
|
||||
table.col(2) = table.col(1).sin();
|
||||
table.col(3) = table.col(1).cos();
|
||||
std::cout << " Degrees Radians Sine Cosine\n";
|
||||
std::cout << table << std::endl;
|
||||
Reference in New Issue
Block a user