inputfile |
入力ファイル名。
地震計の応答特性を表すデータで
SACソフトウェア用の書式で書かれているものを与える。
The name of an input file,
which represents data for the response of a seismometer
and is written in a format for SAC software.
|
factor |
地震計の応答特性における定数係数の値の読み込み先。
宣言しただけのdouble型変数に&を付けて与える。
関数内で値が設定される。
Memory into which the value of a constant factor ()
of an instrumental response is to be inserted.
Give an empty double-type variable with &.
The value is determined within the function.
|
Nzeroes |
地震計の応答特性におけるゼロ点の個数の読み込み先。
宣言しただけのint型変数に&を付けて与える。
関数内で値が設定される。
Memory into which the number of zeroes ()
of an instrumental response is to be inserted.
Give an empty int-type variable with &.
The value is determined within the function.
|
zeroes |
地震計の応答特性におけるゼロ点の値のリストの読み込み先。
宣言しただけのdouble complex ∗型変数に&を付けて与える。
関数内で配列の動的メモリが確保され、
配列要素にはゼロ点の値が代入される。
Memory into which the list of zeroes ()
of an instrumental response is to be inserted.
Give an empty double complex ∗-type variable with &.
Within the function, the dynamic memory for an array is allocated
and the values of zeroes are inserted into the array components.
|
Npoles |
地震計の応答特性における極の個数の読み込み先。
宣言しただけのint型変数に&を付けて与える。
関数内で値が設定される。
Memory into which the number of poles ()
of an instrumental response is to be inserted.
Give an empty int-type variable with &.
The value is determined within the function.
|
poles |
地震計の応答特性における極の値のリストの読み込み先。
宣言しただけのdouble complex ∗型変数に&を付けて与える。
関数内で配列の動的メモリが確保され、
配列要素には極の値が代入される。
Memory into which the list of poles ()
of an instrumental response is to be inserted.
Give an empty double complex ∗-type variable with &.
Within the function, the dynamic memory for an array is allocated
and the values of poles are inserted into the array components.
|