How do I define a structure that has an element which is an array?
이전 댓글 표시
How do I define a structure that has an element which is an array and for which there are sub elements. I have composed a simple example below of what I want to do along with a failed attempt at the needed assert statements.
function y = payroll(personnel)
%#codegen
% Specify the class of the input as struct.
assert(isstruct(personnel));
% Specify the class and size of the fields r and i
% in the order in which you defined them.
assert(isa(personnel.num_employees,'int32'));
assert(isa(personnel.employee,'int32'));
assert(all(size(personnel.employee) == [5 1]));
assert(isa(personnel.employee(1).salary,'int32'));
for i = personnel.num_employees
total_payroll = total_payroll + personnel.name(i).salary;
end
y = total_payroll;
end
댓글 수: 3
Arnab De
2012년 12월 7일
Do you just want to run the MATLAB code or do you want to generate C code from it?
Wayne Prather
2012년 12월 7일
Sean de Wolski
2012년 12월 7일
Good thread +1
채택된 답변
추가 답변 (3개)
John Petersen
2012년 12월 6일
편집: John Petersen
2012년 12월 6일
1. Find out which assertion fails. The code looks fine.
2. Replace the 'for' loop with
y = sum([personnel.name.salary]);
Jan
2012년 12월 7일
This will crash, if the personnel.employee has more than 2 dimensions:
all(size(personnel.employee) == [5 1])
Better:
isequal(size(personnel.employee), [5 1])
Sean de Wolski
2012년 12월 7일
total_payroll = total_payroll + personnel.name(i).salary;
total_payroll is never defined before being used for the first time!
카테고리
도움말 센터 및 File Exchange에서 Algorithm Design Basics에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!