I have nine year wind speed data in excel. The format of this data is like Day,Hour,WindSpeed for nine year. For example: 1,1,5.1 1,2,5.1 . . 1,24,5.7 2,1,6.2 2,2,7.7 . . 2,24,6.7 . . . 3287,1,9.8 3287,2,11.3 . . 3287,24,4.6 Could anybody please suggest me help me for creat csv file in matlab for this type of data?

1 commentaire

Jan
Jan le 15 Mar 2017
The meaning of the data does not matter. The data could be a random matrix also and the solution would be the same.

Connectez-vous pour commenter.

 Réponse acceptée

Jan
Jan le 15 Mar 2017
Modifié(e) : Jan le 15 Mar 2017

0 votes

data = rand(100, 3); % Test data
csvwrite('File.csv', data);

Plus de réponses (1)

ES
ES le 15 Mar 2017

0 votes

read data from excel using xlsread and write using csvwrite.
doc xlsread
doc csvwrite

1 commentaire

Tusharkumar Vaghasiya
Tusharkumar Vaghasiya le 23 Mar 2017
Thank you very much I have learnt much more think from your answer

Connectez-vous pour commenter.

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by