Clear Filters
Clear Filters

help with preallocating arrays?

1 view (last 30 days)
ME
ME on 10 Apr 2015
Edited: ME on 12 Apr 2015
i need help making making this preallocated array
myArray = []
variableArray = []
for i=1:10
variable = [1,2,3]
variableArray = [variable]
myArray = [myArray; variableArray]
end

Answers (1)

Roger Stafford
Roger Stafford on 10 Apr 2015
myArray = zeros(1,10);
for k = 1:10
myArray(k) = k+1;
end
or better still:
myArray = 2:11;

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!