Skip to content
Snippets Groups Projects
Undisturbed_movement.cpp 324 B
Newer Older
#include <iostream>
#include <iomanip>
    Matrix m_1{ 2, 2 };
    Matrix m_2{ 2, 2 };

    m_1.at(0, 0) = 1;
    m_1.at(0, 1) = 2;
    m_1.at(1, 0) = 3;
    m_1.at(1, 1) = 4;

    m_2.at(0, 0) = 5;
    m_2.at(0, 1) = 6;
    m_2.at(1, 0) = 7;
    m_2.at(1, 1) = 8;