aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Tutorial_AdvancedInitialization_LinSpaced.cpp
blob: c6a73ab8cb1048e9f8b702d90bb549de3b834461 (plain)
1
2
3
4
5
6
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;