How I can read one CSV file with header, semicolon to separate the column and coma to float point? One example is annex. I try use the importdata, csvread and dlmread.

 채택된 답변

Hildo
Hildo 2016년 11월 25일

0 개 추천

The better way was use the textscan function with ";" delimiter and after replace the "," by "." before the conversion of string to number.
fileID = fopen(filename,'r');
startRow = 10;
dataArray = textscan(fileID,'%s%s%s',inf,'Delimiter',';',...
'HeaderLines', startRow-1,'ReturnOnError', false);
fclose(fileID);
dataArray{1,2} = strrep(dataArray{1,2},',','.');
dataArray{1,3} = strrep(dataArray{1,3},',','.');

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2015년 6월 20일

0 개 추천

[a,b,c]=xlsread('PV-20150616.csv')
out=b(8:end,:)

카테고리

제품

질문:

2015년 6월 18일

답변:

2016년 11월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by