How to save a txt file in matlab with the specified name I want?

2 Ansichten (letzte 30 Tage)
Example:
filename = input('Enter the file name: ','s')
A
save(fullfile('directory path','filename.txt'),'A','-ascii')

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 14 Apr. 2021
fullname = fullfile('directory path', [filename '.txt']);
save(fullname, 'A', '-ascii')

Weitere Antworten (0)

Kategorien

Mehr zu Files and Folders finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by