saving a data as .m with double elements
    8 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Hİ everyone,
How to save a dataset (like .csv) as .m workspace with all elements as double into this folder ?
THANKS
0 comentarios
Respuestas (1)
  Jayant
      
 el 25 de Jun. de 2023
        
      Editada: Jayant
      
 el 25 de Jun. de 2023
  
      You can use save() function to save the dataset into your workspace.
Here are the steps to do it:
1) Create a new structure to store your dataset.
data = struct('dataset', dataset)
2) Use save function : 
save(['folder_path' 'workspace.mat'], 'data')
Ver también
Categorías
				Más información sobre Database Toolbox en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


