mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-02-05 17:50:26 +08:00
Renamed "MatrixBase::extract() const" to "MatrixBase::part() const" * Renamed static functions identity, zero, ones, random with an upper case first letter: Identity, Zero, Ones and Random.
3 lines
77 B
C++
3 lines
77 B
C++
cout << 6 * RowVectorXi::Ones(4) << endl;
|
|
cout << VectorXf::Ones(2) << endl;
|