Filter löschen
Filter löschen

proper orientation & writing to text file

6 Ansichten (letzte 30 Tage)
shaz
shaz am 23 Nov. 2012
i have a string like
sample1 = ['Software','UserName','Author'];
sample2 = ['Matlab','john','Author1'];
sample3 = ['c','wright','Author2'];
now i need to write to txt file in below format
sample output format
Software UserName Author
Matlab john Author1
c wright Author2
problem is not able to adjust whitespaces

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 23 Nov. 2012
sample1 = {'Software','UserName','Author'}; %NOT square brackets!
fprintf('%14s %-14s %14s\n', sample1{:});
  4 Kommentare
Jan
Jan am 27 Nov. 2012
@Walter: It seems like your comments have lost their context. Did somebody delete some other comments? If so, who and why?
Walter Roberson
Walter Roberson am 27 Nov. 2012
Looks like all of shaz's comments are gone :(

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB 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