how preallocate structure for better memory
조회 수: 347 (최근 30일)
이전 댓글 표시
I had created a structure made so:
head.number = 3;
head.pck_rcv = [1 0 0];
heads(2).number = 5;
head(2).pck_rcv = [1 1 0];
and so on.
How can I preallocate a structure?
댓글 수: 0
채택된 답변
Jan
2012년 9월 22일
편집: Jan
2017년 10월 2일
for k = n:-1:1 % Backwards!
head(k).number = 3;
head(k).pck_rcv = [1 0 0];
end
Now the final size of the struct array is created in the first iteration.
[EDITED] Alternatively:
head = struct('number', cell(1, 10), 'pck_rv', cell(1, 10));
Now head is a [1 x 10] struct array withe the fields 'number' and 'pck_rv'. Pre-allocating the contents of the fields is another job and you need a loop to do this. But now it can run in forward direction also.
댓글 수: 5
Igor Gitelman
2022년 5월 20일
thanks! that
head = struct('number', cell(1, 10), 'pck_rv', cell(1, 10));
work fine!
Dyuman Joshi
2024년 3월 27일
I am accepting Jan's answer as it provides a robust solution to the question posted.
추가 답변 (2개)
Azzi Abdelmalek
2012년 9월 22일
편집: Azzi Abdelmalek
2012년 9월 22일
heads=struct('numbers',zeros(10,1), 'pck_rcv',zeros(10,3))
%then
for k=1:n
heads.numbers(k)=2
heads.pck_rcv(k,:)=[1 2 3]
end
댓글 수: 3
Jan
2017년 10월 2일
@Alexandra: I do not agree. Salvatore asked for a struct array: "head(2).numbers and so on". Azzi's suggestion creates a scalar struct only.
Alexandra Simpson
2017년 10월 2일
True, I just tried it out and realised it wasn't what I wanted either! Thanks for the response.
Walter Roberson
2012년 12월 13일
head = struct('number', {3, 5}, 'pck_rcv', {[1 0 0], [1 0 1]})
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!