![]() |
| サイトマップ | |
|
関数 fwhm
は、与えられた座標範囲の最大値の半分における x 幅の値を返します。オプションで Lowess スムーズ化を使用できます。
fwhm
(x range, y range, f)
引数 x range は変数 x を指定し、引数 y range は変数 y を指定します。いずれかの範囲内に含まれた欠損値または文字列は無視され、データポイントとして取り扱われません。引数 x range と y range は同じサイズで、有効なデータポイントが 3つ以上必要になります。
引数 f はオプションで、Lowess スムージング量を定義し、各回帰に使用されるデータポイントの小数に相当します。f は 0 以上かつ 1 以下である必要があります。すなわち、0 ≤ f ≤ 1 となります。f を省略すると、スムージングは使用されません。
x = {0,1,2}, y={0,1,4}
とします。
col(1)=fwhm(x,y)列1に最大値の半分 1.00 における x 幅を配置します。
The fwhm function returns value of the x width at half-maxima in the ranges of coordinates provided, with optional Lowess smoothing.
Syntax
fwhm(x range, y range,f)
The x range argument specifies the x variable, and the y range argument specifies the y variable. Any missing value or text string contained within one of the ranges is ignored and will not be treated as a data point. x range and y range must have the same size, and the number of valid data points must be greater than or equal to 3.
The optional f argument defines the amount of Lowess smoothing, and corresponds to the fraction of data points used for each regression. f must be greater than or equal to 0 and less than or equal to 1. 0 ≤ f ≤ 1. If f is omitted, no smoothing is used.
col(1)=fwhm(x,y)places the x width at half-maxima 1.00 into column 1.