array/structure.h マニュアル

(The documentation of array/structure.h)

Last Update: 2021/12/8


array/structure.hでは arrayヘッダファイルパッケージで主に用いる構造体が定義されている。 各構造体の定義を以下に示す。
Structures mainly used in array header file package are defined in array/structure.h. Definitions of individual structures are shown below.

◆目次(Table of contents)



◆struct array_station_info型構造体 (A struct array_station_info-type structure)

観測点情報を表現するための構造体である。以下のメンバから成る。
A structure to represent station information. This structure is composed of the following members.


Type
メンバ名
Name of member
メンバの意味
Meaning of member
int N 観測点数。
The number of stations
char ∗∗ name 観測点名を並べた配列。
An array composed of the station names.
double ∗ x 観測点の\(x\)座標を並べた配列。
An array composed of the \(x\)-coordinates of stations.
double ∗ y 観測点の\(y\)座標を並べた配列。
An array composed of the \(y\)-coordinates of stations.
double ∗ z 観測点の\(z\)座標を並べた配列。
An array composed of the \(z\)-coordinates of stations.