I have a .csv
file with the following 'configuration'
'string', 'string', 'string', 'string', 'string'
'string', 'string', 21, 89, 67
'string', 'string', 45, 12, -16
'string', 'string', 78, 56, 45
'string', 'string', 23, 65, 90
'string', 'string', 43, 34, 75
I would like to ignore the first two columns and the first row, and import the numbers to a matrix.
I have tried using textscan
, but without luck. Any experts? :-)