I want to find the average of all the matrix:
Data=(Data{1}+......+Data{n})/n) where Data{n} is a matrix of m*n..
Thank you sooo much
|
First, you convert your cell array into a 3D array, then you can take the average, like this:
Note: if you get memory problems this way, and if you don't need to keep the variable Alternatively, if
|
||||
|
|
|
If your cell array is really big, you might want to keep away from the above solution because of its memory usage. I'd then suggest using the utility
In the above example, I assumed that Data is a line-shaped cell array. I have never used personally Hope this helps. A. |
|||
|
|
Datais a 3D array? – KennyTM Aug 27 '10 at 11:09