次の方法で共有


series_sin()

適用対象: ✅Microsoft FabricAzure データ エクスプローラーAzure MonitorMicrosoft Sentinel

数値系列入力の要素ごとのサインを計算します。

構文

series_sin(系列)

構文規則について詳しく知る。

パラメーター

件名 タイプ Required 説明
系列 dynamic ✔️ サイン関数が適用される数値の配列。

返品

計算されたサイン関数値の動的配列。 数値以外の要素は、null 要素の値を生成します。

print arr = dynamic([-1, 0, 1])
| extend arr_sin = series_sin(arr)

出力

arr arr_sin
[-6.5,0,8.2] [-0.8414709848078965,0.0,0.8414709848078965]