How do i get the Full Width Half Maximum (FWHM) from a matrix with 2 collumns and n-rows?

5 views (last 30 days)
I have found a function that gives the FWHM if you define a function as "function width = fwhm(x,y)". But i simply have the pixel number in my first collumn, and the pixel value in the second collumn. How can i get the FWHM of this nx2 matrix?

Answers (1)

dpb
dpb on 16 Jun 2014
wHM=fwhm(PaData(:,1),PaData(:,2));

Community Treasure Hunt

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

Start Hunting!