Reading/Writing to CSV in Matlab

When doing data analysis, many times your input will come in a .csv file, and you'll also want output in a .csv file.  Unfortunately, matlab's built-in csvread/csvwrite functions are exceptionally frustrating to use for anything than pure numeric input/output.  Luckily, writing your own code to read /csv files (especially with some knowledge of your desired input/output) is pretty easy. Reading...Read More

Exporting Garmin .fit files to Excel .csv files

I'm new to owning a Garmin, but I wanted to do my own analysis on my heart rate data outside of Garmin's analysis. To do this, I had to export a Garmin .fit file to a Excel csv file. I could then import the data into MATLAB to do my own analysis. After searching some forums, I found no great...Read More