Borrar filtros
Borrar filtros

Can I import this CSV file into Matlab?

1 visualización (últimos 30 días)
Franchesca
Franchesca el 24 de Abr. de 2014
Editada: per isakson el 24 de Abr. de 2014
This is the CSV file I have got however it opens through excel and won't import into Matlab using csvread function.
How would I import this?

Respuesta aceptada

per isakson
per isakson el 24 de Abr. de 2014
Editada: per isakson el 24 de Abr. de 2014
Looks like Excel. Try xlsread
  2 comentarios
Franchesca
Franchesca el 24 de Abr. de 2014
No xlsread doesn't work on it either
per isakson
per isakson el 24 de Abr. de 2014
Editada: per isakson el 24 de Abr. de 2014
Doc on csvread says
M = csvread(filename)
reads a comma-separated value formatted file, filename. The file can only contain numeric values.
That might explain why you failed with xlsread. Did you try specifying row,col? Doc says
M = csvread(filename,row,col)
reads data from the file starting at the specified row and column. The row and column arguments are zero based, so that row = 0 and col = 0 specify the first value in the file.

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 24 de Abr. de 2014
Editada: Image Analyst el 24 de Abr. de 2014
Use readtable():
t = readtable('trial01.csv', 'headerlines', 3);
Or if you have an old version of MATLAB, use dlmread.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by