関数_3Ddata2yz_maxvalues マニュアル
(The documentation of function _3Ddata2yz_maxvalues)
Last Update: 2025/8/7
◆機能・用途(Purpose)
3次元データから各\((y,z)\)における\(x\)方向の最大値を取り出すことにより、
\(yz\)断面上のデータを作成する。
Create a data on \(yz\) section
by taking the maximum value for \(x\) on each \((y,z)\) from a 3-D data.
◆形式(Format)
##include <3d_data/section.h>
inline struct _3d_data _3Ddata2yz_maxvalues(const struct _3d_data original)
◆引数(Arguments)
original |
3次元データ。
A 3-D data.
|
◆戻り値(Return value)
作成した\(yz\)断面上の2次元データを
\(x\)方向の格子点数が1の3次元データとして表現した構造体。
A structure that represents the 2-D data on the \(yz\) section,
expressed as a 3-D data with a single grid node
along the \(x\)-direction.
◆使用例(Example)
struct _3d_data original;
struct _3d_data section=_3Ddata2yz_maxvalues(original);