How can I write a magic(5) matrix to a text file with special delimiters?
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I want to a matrix in txt for with the delimeter %%%
0 Commenti
Risposta accettata
  Chunru
      
      
 il 13 Set 2021
        x = magic(5);
fid = fopen('test.txt', 'w');
fprintf(fid, '%f\n', x);  % try different format here
fclose(fid)
type('test.txt')
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Low-Level File I/O 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!