Hi there,
I have a struct Z, which contain 28 structs(Z1,....,Z28).
Each of them has
i (int32) = whose numbers represent the row indexes
j (int32) = whose numbers represent the columns indexes
x (double) = with values
This data was imported from 28 sparses matrixes (24000x24000), using R, in a way that the length of i,j and x are the same, but x(1,1) does not necessarily populate Z(i1,j1). For example, considering Z1, the first value of x is actually the element z(126,126).
Now, in Matlab, I need to recreate these 28 matrixes (24000x24000) matching the values of x with the i,j indexes.
Any clue on how to solve it. I would be extremely grateful!
Using a loop would be the best!
Cheers,