How to store specific data from structure (substructure)?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have large dataset in structure arrays. Hundred of subctructures (1x100), it looks like
data = 1x100 struct array with fields:
timestamp (not interesting)
stimIndex (not interesting)
stim (not interesting)
signal (column of samples - important)
I would like to store just with signal (data(1,1).signal, data(1,2).signal....data(1,100).signal). I don´t know how to make the loop, which will store just the signal data and do it hundreds of times. 100 dataset - 100 file. I hope it is quite clear.
Many thanks for tips
0 件のコメント
採用された回答
Dishant Arora
2014 年 4 月 8 日
That is already stored but if you want it to store in another non struct variable, you need not use a loop. follow this:
Signal = {data.signal} % will result in cell array
2 件のコメント
Dishant Arora
2014 年 4 月 8 日
That results in a cell array not a matrix. You can access individual signals using:
mat = Signal{1}; % Access 1st signal
Go through the attached link to know more about cell arrays, like how to access individual element or how to operate on them http://www.mathworks.in/help/matlab/cell-arrays.html
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!