Feedback re: Using Tall Arrays with Big Data Demo Video
Mostra commenti meno recenti
If you have questions, comments, and/or feedback regarding the Tall Arrays in Action video, or using MATLAB with big data in general, please post them here, and I will respond to you (or find someone to respond =P) as soon as I can!
Best regards, Gabriel
P.S. Heather Gorr has a very similar video located here. This Answers entry is intended for the first video, but feel free to ask away about tall arrays in general =)
4 Commenti
michel hillen
il 7 Ott 2016
Is there a way to add new rows of data to an existing tall array? Suppose I have a large data set, stored as a tall array with the write function, and new data are coming in. Can I then add the new data to the existing data set? If so, how?
Best regards, Michel
Rick Amos
il 11 Ott 2016
Hi Michel, at this time the only way to add new data to a tall array is to recreate the tall array from a datastore containing both the existing data and new data. You could use the tall array write method to achieve this:
% Suppose at the start you have initial data, write it out as so:
write('MyFolder01', tX1);
% Suppose you have some new data at a later time, write it out like so:
write('MyFolder02', tX2);
% Then to analyse all the data thus far, specify both folders as
% the input to datastore:
tX = tall(datastore({'/my/folder/01', '/my/folder/02'}));
Kind Regards, Rick
mohaideen
il 1 Dic 2016
Is there any test sensor data set is available for big data analytics?.
Gabriel Ha
il 17 Gen 2017
Risposte (1)
Hector Tejeda
il 20 Apr 2018
0 voti
At the time of performing the calculations I get an error saying that indexing using tall arrays as subscripts for non-tall arrays is not supported.
Categorie
Scopri di più su Develop Apps Using App Designer in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!