If X is your array of x-values, do
[peaks,locs] = findpeaks(smoothed{i},'MinPeakHeight',0.5,'MinPeakDistance',200);
x_peaks = X(locs);
You can find more info at
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!