Clear Filters
Clear Filters

import multi type data in MATLAB

3 views (last 30 days)
SARAH ZAVAREH
SARAH ZAVAREH on 29 Jun 2011
How I can import a text file in MATLAB including 256 columns: first column is string and other columns are numeric data.

Accepted Answer

Gerd
Gerd on 29 Jun 2011
Hi Sarah,
depending on your specific file you can use
fid= fopen('File.txt');
textscan(fid,'%s%f.....');
fclose(fid);
Gerd
  6 Comments
Jan
Jan on 29 Jun 2011
Data = textscan(fid,['%s' repmat('%f',1,255)]);
Then Data is a cell, which contains the different columns as elements. See "help textscan".
SARAH ZAVAREH
SARAH ZAVAREH on 29 Jun 2011
Thank you all, it works :)

Sign in to comment.

More Answers (0)

Categories

Find more on Large Files and Big Data in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!