How can i write from txt files to any array

1 visualizzazione (ultimi 30 giorni)
İ have any a txt files.
a001.txt
152 583 -129 -523 125 etc..
i want to use them in an array. i want to use each one like a quantitive number. as a result i want that k array is a.txt
k= 152 583 -129 -523 125
thanks

Risposta accettata

ES
ES il 2 Ago 2017

Più risposte (3)

KSSV
KSSV il 2 Ago 2017
Read about load , importdata, textscan.

Jan
Jan il 2 Ago 2017
[fid, msg] = fopen('a001.txt', 'r');
if fid == -1, error('Cannot open file: %s', msg); end
K = fscanf(fid, '%g ', Inf);
fclose(fid);
  3 Commenti
erdem erdemm
erdem erdemm il 3 Ago 2017
I have lots of .txt files until a100 . I want to increase automatically like a001 and a002 and a003 and ...... a100 . how could i write it . Have you got any idea ??
Thanks
erdem erdemm
erdem erdemm il 3 Ago 2017
i use fopen, fscanf for a001.txt and than again i use the same code for a002.txt. ....etc... until a100.txt
thanks

Accedi per commentare.


erdem erdemm
erdem erdemm il 3 Ago 2017
I have lots of .txt files from a001 to a100 . I automatically want to increase files name like a001 and a002 and a003 and ...... a100 .

Categorie

Scopri di più su Workspace Variables and MAT Files in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by