関数sequence_cpy マニュアル
(The documentation of function
sequence_cpy
)
Last Update: 2023/6/12
◆機能・用途
(Purpose)
時系列データをコピーする。
Copy a time series data.
◆形式
(Format)
#include <sequence/operation.h>
inline struct sequence sequence_cpy(struct sequence original)
◆引数
(Arguments)
original
元々の時系列データを表す構造体。
A structure that represents the original time series data.
◆戻り値
(Return value)
引数originalが表す時系列データと全く同じデータを格納した構造体。
A structure composed of the same time series data as that represented by argument
original
.
◆使用例
(Example)
struct sequence data1;
struct sequence data2=sequence_cpy(data1);