MATLAB: Extract from a list of cell

celllist

here is my code:
peak_loc = cell(216,1)
peak_loc{3} = [596,620, 697]
is it possible to extract only the 596 from the list? Thanks

Best Answer

peak_loc{3}(1)