Created
January 3, 2019 19:25
-
-
Save benwtrent/52222b60b0e1334fcf60e62bcb2f10ea to your computer and use it in GitHub Desktop.
mat to csv octave: just a simple
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f=load(FILENAME.mat) | |
C = [f.X, f.y] | |
csvwrite(FILENAME.csv, C) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment