sequence/convert.h マニュアル

(The documentation of sequence/convert.h)

Last Update: 2021/12/7


sequence/convert.hでは 時系列データやフーリエスペクトルを表す構造体間の 変換を行う関数が定義されている。 このヘッダファイル内で定義されている関数を以下に示す。 各関数の詳細は関数名をクリックしてリンク先を参照のこと。
Functions to make conversions among the structures which represent time series and Fourier spectrum data are defined in sequence/convert.h. Functions defined in this header file are listed below. For details of individual functions, click the links.

関数名
Function name
変換方法
Conversion method
struct sequence → struct imsequence
sequence2imsequence_zeroim 実部をそのままコピーし、虚部を0とおく。
Copy the real parts assuming that the imaginary parts are zero.
 
struct imsequence → struct sequence
imsequence2sequence_abs 絶対値を取る。
Take the absolute values.
imsequence2sequence_power 絶対値の2乗を取る。
Take the squares of the absolute values.
imsequence2sequence_realpart 実部を取る。
Take the real parts.
 
struct sequence → struct imsequence2
sequence_to_imsequence2_zeroim 実部をそのままコピーし、虚部を0とおく。
Copy the real parts assuming that the imaginary parts are zero.
 
struct imsequence2 → struct sequence
imsequence2_to_sequence_abs 絶対値を取る。
Take the absolute values.
imsequence2_to_sequence_power 絶対値の2乗を取る。
Take the squares of the absolute values.
imsequence2_to_sequence_realpart 実部を取る。
Take the real parts.
 
struct imsequence → struct imsequence2
imsequence_to_imsequence2 単純な変換。
Simple conversion.
 
struct imsequence2 → struct imsequence
imsequence2_to_imsequence 単純な変換。
Simple conversion.