Say I have a cell arrays (named as 'data') as below:
'k0' 'k1' 'Agg' 'RH' 'AQ' 'fr' 'frac' 'Cel' 'R_A' 'Tot' 'AO'
1.15 1.1574 1.50 0.99 0.090 3.45 1.10 1 11x2 double 11x2 double 11x2 double
How do I get the last element or any element that I desire from the columns
'frac' 'Cel' 'R_A'
11x2 double 11x2 double 11x2 double
I tried using data{:,9}(end) to get the last element from the column 'frac', but not working.