Clear Filters
Clear Filters

How to efficiently: Access and store row of cell value

1 view (last 30 days)
Dear Coder, The objective was to access value in a row of cell and transfer it to other structure. Is there other efficient way than using for loop as shown below.
for i = 1:2650
feature_set (i,1) = Patient.sub_band{i, 1}.feature; end
Thanks in advance for the insight.

Accepted Answer

KSSV
KSSV on 4 May 2017
Are you looking for something like this?
%%create a radnom sturcutre
for i = 1:2650
Patient.sub_band{i, 1}.feature = rand;
end
% Now extract
all_features = [Patient.sub_band{:}] ;
feature_set = [all_features(:).feature] ;
  1 Comment
KSSV
KSSV on 4 May 2017
Edited: KSSV on 4 May 2017
balandong Commented:
Dear KSVV, thanks for the proposed technique, indeed it is efficient then the for loop. For example, the time taken to process the data using FOR-LOOP and your-approach is 0.01050 sec and 0.00650 sec, respectively. In addition, your line is more tidy if the more DOT FEATURES are to be processess.
Thank you

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!