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.
20 lines
518 B
20 lines
518 B
#include <StormEigen/Dense>
|
|
#include <iostream>
|
|
|
|
using namespace StormEigen;
|
|
|
|
void copyUpperTriangularPart(MatrixXf& dst, const MatrixXf& src)
|
|
{
|
|
dst.triangularView<Upper>() = src.triangularView<Upper>();
|
|
}
|
|
|
|
int main()
|
|
{
|
|
MatrixXf m1 = MatrixXf::Ones(4,4);
|
|
MatrixXf m2 = MatrixXf::Random(4,4);
|
|
std::cout << "m2 before copy:" << std::endl;
|
|
std::cout << m2 << std::endl << std::endl;
|
|
copyUpperTriangularPart(m2, m1);
|
|
std::cout << "m2 after copy:" << std::endl;
|
|
std::cout << m2 << std::endl << std::endl;
|
|
}
|