saving a data as .m with double elements
1 回表示 (過去 30 日間)
古いコメントを表示
Hİ everyone,
How to save a dataset (like .csv) as .m workspace with all elements as double into this folder ?
THANKS
0 件のコメント
回答 (1 件)
Jayant
2023 年 6 月 25 日
編集済み: Jayant
2023 年 6 月 25 日
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')
4 件のコメント
参考
カテゴリ
Help Center および File Exchange で Database Toolbox についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!