Skip to content

Instantly share code, notes, and snippets.

@redpist
Created September 16, 2012 18:22
Show Gist options
  • Save redpist/3733609 to your computer and use it in GitHub Desktop.
Save redpist/3733609 to your computer and use it in GitHub Desktop.
Example C++ML 3
#ifndef _3_H_
#define _3_H_
#include <vector>
typedef std::vector<int> Matrix1;
typedef std::vector<std::vector<int> > Matrix2;
typedef std::vector<std::vector<std::vector<int> > > Matrix3;
template <typename T>
using MetaMatrix3 = std::vector<std::vector<std::vector<T> > >;
#endif /* _3_H_ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment