Skip to content

A preliminary SymMat class for the Eigen C++ linear algebra library.

Notifications You must be signed in to change notification settings

zachary-feng/gsoc-matrix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SymMat

Welcome to the SymMat symmetric matrices package for Eigen!

You should find these three files in your working directory:

main.cpp
SymMat.cpp
SymMat.h

In addition, you should download the latest Eigen release from their website. Download the zip and extract the folder into your working directory. We will rename this folder to eigen but you do not have to.

To launch the demo (i.e. main.cpp), run the following commands in the Linux shell:

g++ -c main.cpp -I ./eigen
g++ -c SymMat.cpp -I ./eigen
g++ main.o SymMat.o -o main
./main

Note: ./eigen is the path to the Eigen library folder which you downloaded.

Enjoy!

About

A preliminary SymMat class for the Eigen C++ linear algebra library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages