Support both matrix and da in the command
diff --git a/matrix.go b/matrix.go
index 4ce82c9..4b439d0 100644
--- a/matrix.go
+++ b/matrix.go
@@ -82,6 +82,11 @@
 	return mat
 }
 
+// Type of tokenizer
+func (MatrixTokenizer) Type() string {
+	return MAMAGIC
+}
+
 // Save stores the matrix data in a file
 func (mat *MatrixTokenizer) Save(file string) (n int64, err error) {
 	f, err := os.Create(file)