Create empty dataset array

10 次查看(过去 30 天)
Vanessa
Vanessa 2017-4-26
评论: KSSV 2017-4-26
Hello everyone,
How Can I Pre allocate memory for a DATASET ARRAY which should have 274 Columns. There is another dataset array with the same columns in my workspace .The rows of the new dataset array differs every time the code run based on date. Can you help me with that?
Thanks, Vanessa
  2 个评论
KSSV
KSSV 2017-4-26
The rows of the new dataset array differs every time the code run based on date whats the criteria here?
Vanessa
Vanessa 2017-4-26
every hour new data are fetched from a database the number of them is not known so when the code run i cannot preallocate the size of array.

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2017-4-26
You can follow something like this:
n = 10 ; % number of columns
A = zeros([],n); % rows not known
for ii = 1:100
A(ii,1:n) = rand(1,n);
end
  2 个评论
Vanessa
Vanessa 2017-4-26
Thank u for your help!
KSSV
KSSV 2017-4-26
thanking is accepting the answer.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Database Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by