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

조회 수: 17 (최근 30일)
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

답변 (2개)

Harshendra Shah
Harshendra Shah 2020년 4월 7일
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 2020년 4월 7일

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by