Skip to content

Instantly share code, notes, and snippets.

View mdasifchand's full-sized avatar
:electron:

kaopqx mdasifchand

:electron:
View GitHub Profile
@mdasifchand
mdasifchand / Eigen Cheat sheet
Last active April 11, 2024 07:09 — forked from gocarlos/Eigen Cheat sheet
Cheat sheet for the linear algebra library Eigen: http://eigen.tuxfamily.org/
// Eigen library usage analogous to Matlab
// Full example can be found at : https://github.com/mdasifchand/EigenExamples/blob/main/main.cpp
// Author : Asif, few ideas are adapted from Keir Mierle and gocarlos
#include <iostream>
#include <eigen3/Eigen/Dense>
using namespace Eigen;