a question about datastore
2 次查看(过去 30 天)
显示 更早的评论
Would you help me understand the point of datastore?
Suppose I read an excel sheet with muliple sheets using datastore. I want to create a table that includes all variables in Sheet 1, Sheet 2, .... How can one do this?
3 个评论
Walter Roberson
2022-6-19
One of the very common operations is to loop over a collection of files, processing each file. Even without the facilities that permit datastore to read partial files, datastore offers a more organized way of looping over colllections of file.
You start to see more of the power of data stores when you start using transformation steps, such as augmentedImageDatastore which can automatically handle resizing of images and automatically handle conversion to grayscale or rgb -- and also potentially random rotations and translations.
采纳的回答
Pooja Kumari
2022-6-28
Dear Alpedhuez,
It is my understanding that you want to know about the point of Database and want to create a table from excel sheet with multiple sheet that include all variable stored in Sheet 1, Sheet 2.
Datastore is a repository for collection of data that are too large to fit in memory and datastore function builds one.
A datastore is an object for reading a single file or a collection of files or data.
You can refer to the following document to get a better understanding of the same:
You can read an excel sheet with multiple sheets using ‘spreadsheetDatastore’ function.
ssds = spreadsheetDatastore(location)
%This command will create a spreadsheet Datastore object from collection of data
You can store all the variable in the excel sheet in Sheet1, Sheet2 by using this piece of code:
ds = spreadsheetDatastore("your_excel_sheet.xlsx");
ds.Sheets = [1 2]; % if your excel sheet has 2 sheet as Sheet1 and Sheet2
% If you want to take all the sheets present in your excel sheet, you can pass " " (blank string)
You can refer to the given link below for more information on spreadsheetDatastore :
Sincerely,
Pooja Kumari
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!