Answers for "Define the Eigen value and Eigen vector of the matrix, Find the Eigen values and Eigen vectors of the following matrix."

C++
2

eigenvalue of matrix c++ using Eigen

#include <eigen3/Eigen/Eigenvalues> // header file
  #include <iostream>

  int main(){
  Eigen::Matrix<double, 2, 2> A; // declare a real (double) 2x2 matrix
  A << 0, 2, 1, 0; // defined the matrix A

  Eigen::EigenSolver<Eigen::Matrix<double, 2,2> > s(A); // the instance s(A) includes the eigensystem
  std::cout << A << std::endl;
  std::cout << "eigenvalues:" << std::endl;
  std::cout << s.eigenvalues()(0) << std::endl;
  std::cout << "eigenvectors=" << std::endl;
  std::cout << s.eigenvectors() << std::endl;

  return(0);
}
Posted by: Guest on June-08-2020

Code answers related to "Define the Eigen value and Eigen vector of the matrix, Find the Eigen values and Eigen vectors of the following matrix."

Browse Popular Code Answers by Language