Creation and use of matrixes in C++ #Mastery26 #TC1017

Creation and use of matrixes in C++ 26 1017

Usually this is the way people represented

or in this way 

 

Matrices are used to represent complicated or time-consuming mathematical operations. A single matrix can hold an infinite number of calculations, which can then be applied to a number, vector, or another matrix. There are several operations that can be done on matrices, including addition, multiplication and inverse calculation; some of which will be discussed shortly.

 

Matriz are declaraed in this way 

 

[][]; 

 

For example if we want to declarate the matriz called matr  with a dimension  of   15×4 and you can store character data type we write

matr : matriz [15][4] character

Usefull links 🙂 

http://www.cpp-home.com/archives/185.html

http://dis.unal.edu.co/~programacion/book/modulo3.pdf

CC BY 4.0 Creation and use of matrixes in C++ #Mastery26 #TC1017 by Alejandra Jacobo Gómez is licensed under a Creative Commons Attribution 4.0 International License.

Comments are closed.