フィルターのクリア

How to Calculate The Full Wave Half Maximum.

3 ビュー (過去 30 日間)
mohd akmal masud
mohd akmal masud 2021 年 6 月 23 日
コメント済み: mohd akmal masud 2021 年 6 月 23 日
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 件のコメント
KSSV
KSSV 2021 年 6 月 23 日
Better attach your data
mohd akmal masud
mohd akmal masud 2021 年 6 月 23 日
as attacehd

サインインしてコメントする。

採用された回答

KSSV
KSSV 2021 年 6 月 23 日
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 件のコメント
mohd akmal masud
mohd akmal masud 2021 年 6 月 23 日
thank you sir. i try first.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by