How to Calculate The Full Wave Half Maximum.

1 vue (au cours des 30 derniers jours)
mohd akmal masud
mohd akmal masud le 23 Juin 2021
Commenté : mohd akmal masud le 23 Juin 2021
Hi Everyone, anyone know how to write command to calculate the Full Wave Half Maxiumum(FWHM) on my data. As shown in figure attached.
  2 commentaires
KSSV
KSSV le 23 Juin 2021
Better attach your data
mohd akmal masud
mohd akmal masud le 23 Juin 2021
as attacehd

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 23 Juin 2021
Let (n.counts) be your data.
[max_counts,idx] = max(counts) ;
half_max_counts = max_counts/2 ;
idx = knnsearch(counts,half_max_counts) ;
FWHM = abs(diff(n(idx)))
You can inerpolate the data for better accuracy.
  1 commentaire
mohd akmal masud
mohd akmal masud le 23 Juin 2021
thank you sir. i try first.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by