C++ Armadillo :: Accessing row and column and operations on it














































C++ Armadillo :: Accessing row and column and operations on it



---------------------------------------------------------------------------------------------------------------
Description::
This is the basic C++ program of C++ armadillo library which shows how to access rows and column of the given matrix. It can be carried out by the help of inbuilt functions "row" or "col" in armadillo library. Both the function do not take any parametres. Elements can be made zero by function "zeros".
---------------------------------------------------------------------------------------------------------------
Program::

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

int main(int argc, const char **argv)
{
       //initialize the random generator
//Create a 4 x 4 random matrix and printing it
mat A = randu<mat>(4,4); //random matrix of size 4x4 (generared by this syntax)
cout << "Matrix A::\n"<<endl;
cout<< A << endl;
// Accessing first row of matrix A cout << "Row 1::\n"<<endl;
cout << A.row(0) << "\n"; //Displaying first row
A.row(0) = A.row(1) + A.row(3); //Addition of rows cout << "Matrix A(After operation)::\n"<<endl; cout<< A << endl; // Accessing second column of matrix A cout << "Column 2::\n"<<endl; //Displaying second column cout << A.col(1) << "\n"; // Making all the elements of third column of matrix A to zero A.col(2).zeros(); //Making all the elements zero cout << "Matrix A(After operation)::\n"<<endl; cout<< A << endl;
return 0;
}
---------------------------------------------------------------------------------------------------------------
Commands to run program on terminal::
g++ filename.cpp -o objectname -O2 -larmadillo

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

Matrix A::
0.7868 0.0193 0.5206 0.1400 0.2505 0.4049 0.3447 0.5439 0.7107 0.2513 0.2742 0.5219 0.9467 0.0227 0.5610 0.8571 Row 1:: 0.7868 0.0193 0.5206 0.1400 Matrix A(After operation):: 1.1971 0.4276 0.9057 1.4009 0.2505 0.4049 0.3447 0.5439 0.7107 0.2513 0.2742 0.5219 0.9467 0.0227 0.5610 0.8571 Column 2:: 0.4276 0.4049 0.2513 0.0227 Matrix A(After operation):: 1.1971 0.4276 0 1.4009 0.2505 0.4049 0 0.5439 0.7107 0.2513 0 0.5219 0.9467 0.0227 0 0.8571


More Articles of Shubham Loya:

Name Views Likes
C++ OpenCV cv::trace() 1382 1
C++ Armadillo :: Real and Imaginary part 1387 1
C++ OpenCV cv::perspectiveTransform() 4670 1
C++ Armadillo :: find_nonfinite 651 2
C++ Armadillo introduction and installation 535 1
C++ Armadillo :: Kron 1118 1
C++ Armadillo :: Accessing row and column and operations on it 1041 1
C++ Armadillo :: cond 420 2
C++ Armadillo :: pseudo-inverse 2479 1
C++ OpenCV cv::flip() 1526 1
C++ OpenCV cv::transpose() 6110 1
C++ Armadillo :: any 469 2
C++ Armadillo :: Max and Min of matrices 785 1
C++ OpenCV cv::pow() 2109 1
C++ Armadillo :: fliplr and flipud 891 2
C++ Armadillo :: Sort 1038 1
C++ Armadillo :: Determinant of Matrix 783 1
C++ Armadillo :: Indices of Unique elements of matrix 805 1
C++ Armadillo :: eps 432 3
C++ Armadillo :: Inverse 1168 1
C++ Armadillo :: Transpose of Matrix 1011 1
C++ Armadillo :: Basic Arithmetic Operations 420 1
C++ Armadillo :: Cross Product of vectors 1052 4
C++ OpenCV program to play a video 1037 1
C++ Armadillo :: Diagonal of Matrix 802 1
C++ Armadillo :: Absolute value of Matrix 1009 1
C++ Armadillo :: Conj 388 2
C++ Armadillo :: expmat 814 2
C++ OpenCV Input from Camera 1691 1
C++ OpenCV program to convert BGR image to grayscale image 4882 1
C++ Armadillo :: Intersect 665 2
C++ Armadillo :: Nonzeros 863 2
C++ Armadillo :: Dot Product of vectors 1462 2
C++ OpenCV:: Transforming BGR image to Grey scale image 526 2
C++ OpenCV to rotate an image 10002 1
C++ Armadillo :: Unique elements of matrix 715 1
C++ Armadillo :: Log Determinant 724 1
C++ Armadillo :: Sort_index 1301 2
C++ Armadillo :: Max Min 1371 1
C++ Armadillo :: Shift 754 1
C++ Armadillo :: Square root of Matrix 1512 1
C++ OpenCV cv::cvtColor() 2010 1

Comments