We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit d807e7cCopy full SHA for d807e7c
README.md
@@ -0,0 +1,14 @@
1
+# CSV to Matrix
2
+
3
+CVS to Matrix parser. Reads a CSV file, outputs a arrays in array (Matrix): `npm install csv-to-matrix`
4
5
+```
6
+import math from 'mathjs';
7
+import csvToMatrix from 'csv-to-matrix';
8
9
+csvToMatrix(pathToFile, callback, delimiter);
10
11
+function callback(data) {
12
+ const matrix = math.matrix(data);
13
+}
14
0 commit comments