Clear Filters
Clear Filters

Error within importing the .cvs file

2 views (last 30 days)
Vasek
Vasek on 26 Mar 2012
Hello everybody, I have bulk data separated by semicolon stored in .csv file and I need to import them into the Matlab as matrix (which I'm going to use for some plots).
I've tried to use:
a = csvread('Velocity.csv',2,2);
(to start at the second row and column). However, it always responds with the following error statement:
_??? Error using ==> dlmread at 145 Number of HeaderColumns is greater than number of columns in file.
Error in ==> csvread at 52 m=dlmread(filename, ',', r, c);
Error in ==> Untitled at 1 a = csvread('Velocity.csv',2,2);_
Do you know what's going on? Where is the problem? Furthermore, how could specified just specific range, let say only row 600 - 850?
Than you. Vasek

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!