C++ Armadillo :: Square root of Matrix














































C++ Armadillo :: Square root of Matrix



---------------------------------------------------------------------------------------------------------------
Description::
This is the basic C++ program of C++ armadillo library which shows how to get the square root of the given matrix of some particular size. It can be carried out by the help of inbuilt function "sqrtmat" in armadillo library. "sqrtmat" function takes just the one parameter i.e the matrix name.
---------------------------------------------------------------------------------------------------------------
Program::

#include <iostream>
#include <armadillo>
using namespace std;
using namespace arma;

int main()
{
//initialize the random generator
//Create a 5 x 5 random matrix and printing it
mat A;
A = randu<mat>(5,5); //random matrix of size 4x4 (generared by this syntax)
cx_mat B = sqrtmat(A); //getting square root of matrix
cout << "Matrix A::\n"<<endl;
cout<< A << endl;
cout << "Matrix B(Square root of matrix)::\n" << endl; //displaying cout<< B << endl;
return 0;
}
---------------------------------------------------------------------------------------------------------------
Commands to run program on terminal::
g++ filename.cpp -o objectname -O2 -larmadillo

$ ./objectname
---------------------------------------------------------------------------------------------------------------
Output::

Matrix A::

0.7868 0.4049 0.2742 0.8571 0.2393 0.2505 0.2513 0.5610 0.4998 0.3201 0.7107 0.0227 0.1400 0.4194 0.9105 0.9467 0.5206 0.5439 0.7443 0.1648 0.0193 0.3447 0.5219 0.2492 0.2455
Matrix B(Square root of matrix)::
(+9.273e-01,-5.780e-02) (-5.612e-04,+3.957e-01) (-1.169e-01,+8.109e-02) (+4.453e-01,-9.584e-02) (+4.177e-01,-3.538e-01) (-2.635e-01,-3.124e-02) (+8.412e-01,+2.139e-01) (+5.147e-01,+4.382e-02) (+4.085e-01,-5.179e-02) (-2.781e-01,-1.912e-01) (+9.408e-01,-3.950e-02) (-8.096e-01,+2.705e-01) (+6.359e-02,+5.542e-02) (+1.973e-02,-6.550e-02) (+1.456e+00,-2.418e-01) (+3.158e-01,+9.075e-02) (+5.674e-01,-6.213e-01) (+5.278e-01,-1.273e-01) (+7.154e-01,+1.505e-01) (-3.954e-01,+5.555e-01) (-3.161e-01,+2.047e-02) (+6.017e-01,-1.401e-01) (+4.664e-01,-2.872e-02) (+1.949e-01,+3.394e-02) (+6.157e-02,+1.253e-01)

More Articles of Shubham Loya:

Name Views Likes
C++ OpenCV cv::trace() 1555 1
C++ Armadillo :: Real and Imaginary part 1631 1
C++ OpenCV cv::perspectiveTransform() 5325 1
C++ Armadillo :: find_nonfinite 792 2
C++ Armadillo introduction and installation 596 1
C++ Armadillo :: Kron 1307 1
C++ Armadillo :: Accessing row and column and operations on it 1404 1
C++ Armadillo :: cond 481 2
C++ Armadillo :: pseudo-inverse 2886 1
C++ OpenCV cv::flip() 1834 1
C++ OpenCV cv::transpose() 6949 1
C++ Armadillo :: any 532 2
C++ Armadillo :: Max and Min of matrices 918 1
C++ OpenCV cv::pow() 2395 1
C++ Armadillo :: fliplr and flipud 1000 2
C++ Armadillo :: Sort 1230 1
C++ Armadillo :: Determinant of Matrix 883 1
C++ Armadillo :: Indices of Unique elements of matrix 958 1
C++ Armadillo :: eps 492 3
C++ Armadillo :: Inverse 1508 1
C++ Armadillo :: Transpose of Matrix 1230 1
C++ Armadillo :: Basic Arithmetic Operations 453 1
C++ Armadillo :: Cross Product of vectors 1274 4
C++ OpenCV program to play a video 1184 1
C++ Armadillo :: Diagonal of Matrix 948 1
C++ Armadillo :: Absolute value of Matrix 1147 1
C++ Armadillo :: Conj 482 2
C++ Armadillo :: expmat 954 2
C++ OpenCV Input from Camera 1945 1
C++ OpenCV program to convert BGR image to grayscale image 5679 1
C++ Armadillo :: Intersect 764 2
C++ Armadillo :: Nonzeros 994 2
C++ Armadillo :: Dot Product of vectors 1664 2
C++ OpenCV:: Transforming BGR image to Grey scale image 580 2
C++ OpenCV to rotate an image 11174 1
C++ Armadillo :: Unique elements of matrix 809 1
C++ Armadillo :: Log Determinant 797 1
C++ Armadillo :: Sort_index 1509 2
C++ Armadillo :: Max Min 1596 1
C++ Armadillo :: Shift 918 1
C++ Armadillo :: Square root of Matrix 1730 1
C++ OpenCV cv::cvtColor() 2322 1

Comments