Files
eigen/doc/snippets/MatrixBase_cwiseArg.cpp
T
2026-05-04 00:36:12 +00:00

6 lines
177 B
C++

// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
MatrixXcf v = MatrixXcf::Random(2, 3);
cout << v << endl << endl;
cout << v.cwiseArg() << endl;