- To find files that match a pattern, use dir.
- Use function syntax to pass the name of the file to the import or export function. (For more information, see Command vs. Function Syntax.)
how to load multiple .asc file in matlab which consists of numbers and text.
8 views (last 30 days)
Show older comments
hello everyone,
im having a folder of .asc files which consists of hexadecimal values and timestamps, message name etc. that i have to decode to get a vehicle information. when i use the following code, each file is imported with its text data and number data in different cells.
location = uigetdir;
D = dir([location, '\*.asc']);
filenames = {D(:).name}.';
data = cell(1,length(D));
for ii = 1:length(D)
fullname = [location filesep D(ii).name];
[~, ~, data{ii}] = importdata(fullfile(fullname));
end
how do i load each .asc file in the folder where all the values appears in one single table/cell. if someone knows the answer please reply me with an answer it will be very useful for my work.
here is the picture sample of my file as im unable to insert a .asc file here
0 Comments
Answers (2)
Harshendra Shah
on 7 Apr 2020
Hi Padmamalini,
To import or export multiple files, create a control loop to process one file at a time. When constructing the loop:
You can refer the following documentation page for the same. You can also find a sample code here:
0 Comments
Walter Roberson
on 7 Apr 2020
I showed you in https://www.mathworks.com/matlabcentral/answers/501609-how-to-read-a-really-large-lines-of-data-ascii-file-format-to-a-table how to read the data using textscan()
0 Comments
See Also
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!