How to save sub-fields of a structure in txt file format with the same filenames in a loop

3 ビュー (過去 30 日間)
Eberechi ICHI
Eberechi ICHI 2021 年 12 月 18 日
移動済み: Voss 2024 年 1 月 2 日
clc
clear all
close all
% folder = uigetdir();
% fileList = dir(fullfile(folder, '*.bmp'));
files = dir('*.lvm');
nfiles=length(files);
for K=1:140
basename = sprintf('Metal_%d', K);
filename = [basename '.lvm'];
outfile = [basename '.mat'];
signal= [basename '.txt'];
%clear data
if exist(filename, 'file') == 0
continue;
end
data.(basename) = lvm_import(filename, 1);
%save(outfile, '-struct', 'data')
end
Here is my code above. I was trying to save the data sub-filed having an order 204800x2 in text file in a loop. There are 121 structures generated by the code.
Kindly assit as soon as you ca.
Thanks.

回答 (1 件)

Voss
Voss 2021 年 12 月 18 日
移動済み: Voss 2024 年 1 月 2 日
To save a matrix to a text file, you can use writematrix.

カテゴリ

Help Center および File ExchangeText Files についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by