You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
272 B
7 lines
272 B
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;
|