how to load multiple .asc file in matlab which consists of numbers and text.

35 Ansichten (letzte 30 Tage)
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

Antworten (2)

Harshendra Shah
Harshendra Shah am 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:
  • 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.)
You can refer the following documentation page for the same. You can also find a sample code here:

Walter Roberson
Walter Roberson am 7 Apr. 2020

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by