Save a Table as a .csv in a Specified Folder
    30 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Hello,
Here is the code I have:
save_table ='C:\Users\Folder Path\Data';
table_path_format = [save_table 'Name_of_File.csv'];
writetable(T,table_path_format);
where T is a 90 x 8 table.
Am I skipping a step?
Thanks.
0 comentarios
Respuesta aceptada
  Adam Danz
    
      
 el 8 de Nov. de 2022
        
      Editada: Adam Danz
    
      
 el 8 de Nov. de 2022
  
      The accepted answer in the question you followed uses fullfile to construct the file path. That's much safer than constructing the file path by concatenating char vectors (like you're doing).  Your table_path_format is missing a file separator character.  fullfile adds that for you.  
Más respuestas (0)
Ver también
Categorías
				Más información sobre Logical en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

