ailiaAudioLog1p method

int ailiaAudioLog1p(
  1. Pointer<Void> dst,
  2. Pointer<Void> src,
  3. int src_n
)

~japanese @brief 入力値を対数スケールに変換します。 @param dst 出力データポインタ、float 型、長さ src_n @param src 入力データポインタ、float 型、長さ src_n @param src_n 計算対象の要素数 @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details dst = log_e(1.0 + src) を計算します。

~english @brief Convert the input values to a logarithmic scale. @param dst pointer to the output data, of float format, and of length src_n @param src pointer to the input data, of float format, and of length src_n @param src_n number of elements to be calculated @return In case of success, \ref AILIA_STATUS_SUCCESS , and else an error code is returned. @details dst = log_e(1.0 + src)

Implementation

int ailiaAudioLog1p(
  ffi.Pointer<ffi.Void> dst,
  ffi.Pointer<ffi.Void> src,
  int src_n,
) {
  return _ailiaAudioLog1p(
    dst,
    src,
    src_n,
  );
}