関数copy_sac_header マニュアル

(The documentation of function copy_sac_header)

Last Update: 2023/6/13


◆機能・用途(Purpose)

union sacheader型共用体をコピーする。
Copy a union sacheader-type union.


◆形式(Format)

#include <sac/operation.h>
inline union sacheader copy_sac_header(const union sacheader original)


◆引数(Arguments)

original コピー元のSACヘッダ。
The SAC headers to be copied.


◆戻り値(Return value)

引数originalをコピーした共用体。
The union copied from the argument original.


◆使用例(Example)

struct sac_timeseq raw=read_sac_timeseq("data.sac");
struct sac_timeseq filtered;
filtered.data=sequence_filterall_zerophase(raw.data,0.1,2,1.0,2);
data.header=copy_sac_header(raw.header);