EMatrix
Functions
readme_example.cpp File Reference
#include <iostream>
#include "EMatrix.h"
Include dependency graph for readme_example.cpp:

Go to the source code of this file.

Functions

int main (void)
 Begin and the very beginning. More...
 

Detailed Description

This file is part of EMatrix, the C++ matrix library distribution. This project is licensed under the terms of the MIT license. The full text of the license file can be found in LICENSE.

Definition in file readme_example.cpp.

Function Documentation

◆ main()

int main ( void  )

Begin and the very beginning.

Definition at line 16 of file readme_example.cpp.

References ematrix::inv().

16  {
17 
18  ematrix::Matrix<double,3,3> A = {1.,2.,3.,0.,0.,0.,0,0,0};
19  ematrix::Matrix<double,3,3> B = {1,1,1,3,4,5,3,6,10};
20  std::cout << A+inv(B);
21 
22  return(0);
23 }
Matrix< float, tRows, tRows > inv(const Matrix< float, tRows, tRows > &R)
Definition: EMatrix.h:841