How to write a matrix into a txt file so that all variables in a columns have exactly the same starting character and length?
    2 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I am trying to export a matrix into a text file. The text file will later be feed into another program that requires all variables in a specific columns have the same starting location, and the same length.
How should I achieve this? Which Matlab function should I use to export the data?
Thank you.
0 Commenti
Risposta accettata
  Fangjun Jiang
      
      
 il 21 Apr 2011
        use sprintf formating, such as
a=rand(5,1);
sprintf('%20.2f\n',a(:));
doc sprintf
It also applies to fprintf.
2 Commenti
  Walter Roberson
      
      
 il 21 Apr 2011
				No, sprintf() and fprintf() will repeat the format as often as needed to write out all the data.
Più risposte (2)
  Fangjun Jiang
      
      
 il 25 Apr 2011
        What do you mean? What exact format do you want to achieve? Please read through the document of sprintf formatting. I think it should be able to cover most if not all format.
Is this what you need?
sprintf('%010.2f\n',45,-45,26.7,126.8)
0 Commenti
Vedere anche
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!


