4

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

0

2 Answers 2

6

If your B is actually a 5 element cell array where each element is a 1-by-5 matrix (actually each element can contain anything), then

[A.attendance] = B{:}

will work. You can convert your 5-by-5 double matrix B to the desired form as follows:

B_cell = mat2cell(B, ones(size(B,1),1),size(B,2))

or skip the temp variable and use deal:

[A.attendance] = deal(mat2cell(B, ones(size(B,1),1),size(B,1)))
Sign up to request clarification or add additional context in comments.

6 Comments

So you can use deal directly on the cell without {:}. These things always confuse me!
@Luis I guess this is just what you said: {:} is itself an implicit deal. Using explicitly deal allows you to use a full cell, deal will deal with it for you.
@Andras I see it this way: deal allows you to use a "manually" defined comma-separated list on the RHS: [A(1:5).attendance] = deal(1,3,5,7,9);. That doesn't work without deal. But if that 1,3,5,7,9 list is automatically generated from a cell array C = {1,3,5,7,9} as C{:}, then deal is not necessary from Matlab 7.0 onwards, even though C{:} produces precisely 1,3,5,7,9
Here's Loren Shure on the subject: blogs.mathworks.com/loren/2008/01/24/deal-or-no-deal
Just to confirm explicitly, I can't store a double matrix as a double matrix directly (as mentioned above in the question) in a structure?
|
6

You can convert B to a cell array of its rows,

C = mat2cell(B, ones(size(B,1),1), size(B,2))

and then you can assign as follows

[A(1:size(B,2)).attendance] = C{:};

5 Comments

I was just thinking about a solution with deal:)
damn, I shouldn't have typed for as long ;) I don't think you need the index on A, [A.attendance] should work too
@Andras Actually there's an "implicit" deal on the right-hand side. It used to be necessary, but it's not anymore since version 7.0
@LuisMendo sure, I realized a posteriori. But it was all too late;)
@Dan That's a good idea, but only if A is previously undefined or sufficiently small. If A has more than size(B,1) entries it will give an error

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.