How can I add elements to pre-allocated array?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I used "Data = zeros(1,100);" but I want to replace zeros with values in cycle like this:
for i = 1 : 10
var1 = "somefunctionthatgives(1,10)vector"
Data = [Data,var1];
end
Without allocation is runs just perfectly but MATLAB keeps suggesting to pre-allocate array for speed... I would normally ignore it but I have to solve task in which at the end variable Data would be vector (1,10000000). And doing it in minimum time is also part of the task. Can somebody help me?
Thanks a lot...
2 comentarios
Stephen23
el 9 de Mzo. de 2018
"MATLAB keeps suggesting to pre-allocate array for speed..."
Always write code using good code practices.
When someone writes code only using inefficient/buggy practices, then they will learn and practice only those methods. And then when one day it becomes critical to write something better, they will have no experience or idea how to write efficient code.
Writing preallocated code also means that the code is more generalized, so that even if it was tested with ten elements it will work happily with ten million. Why limit the code for no reason?
"I would normally ignore it"
Never ignore the hints from the editor.
Respuestas (1)
Von Duesenberg
el 9 de Mzo. de 2018
Try this:
Data = zeros(100,1);
i = 1;
while i < length(Data)
var1 = randperm(10);
currentIdx = (0:9)+i;
Data(currentIdx) = var1;
i = i + 10;
end
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!