Is it possible to add a matrix to a structure 'column' without using a for-loop? For example I have a structure with 3 fields
A.name
A.grade
A.attendance
now A.attendance expects a 1x5 matrix. If I have a 5x5 matrix, can I directly insert it into 5 rows of the structure A? something like
A(1:5).attendance = B
where B is a 5x5 matrix