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

7 lines
141 B
C++

// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
Array3d v(3, 2, 4), w(5, 4, 2);
v /= w;
cout << v << endl;