関数_3Ddata2xy_maxvalues マニュアル

(The documentation of function _3Ddata2xy_maxvalues)

Last Update: 2025/8/7


◆機能・用途(Purpose)

3次元データから各\((x,y)\)における\(z\)方向の最大値を取り出すことにより、 \(xy\)断面上のデータを作成する。
Create a data on \(xy\) section by taking the maximum value for \(z\) on each \((x,y)\) from a 3-D data.


◆形式(Format)

##include <3d_data/section.h>
inline struct _3d_data _3Ddata2xy_maxvalues(const struct _3d_data original)


◆引数(Arguments)

original 3次元データ。
A 3-D data.


◆戻り値(Return value)

作成した\(xy\)断面上の2次元データを \(z\)方向の格子点数が1の3次元データとして表現した構造体。
A structure that represents the 2-D data on the \(xy\) section, expressed as a 3-D data with a single grid node along the \(z\)-direction.


◆使用例(Example)

struct _3d_data original;
struct _3d_data section=_3Ddata2xy_maxvalues(original);