MATLAB: Extracting data from single cell in .csv-file using textscan

csvMATLABtextscan

Hello!
I have a .csv-file called "Hamstring.csv" (attached). I need to extract data from single cells in the five first rows of the file (A1, A2, A3, A4 and A5).
After trying a few different functions, I figured I have to use textscan, but I can't get the specifiers right. Can anyone help?

Best Answer

use readtable() to read the file
Related Question