関数write_matrix マニュアル

(The documentation of function write_matrix)

Last Update: 2024/7/24


◆機能・用途(Purpose)

行列をファイルに書き出す。
Write a matrix to a file.


◆形式(Format)

#include <matrix/readwrite.h>
inline void write_matrix
(const struct matrix A, const char ∗filename, const char ∗filetype)


◆引数(Arguments)

A 出力したい行列。
A matrix to output.
filename 出力ファイル名から拡張子を除いた文字列。
A string that represents the output file name, excluding the extension.
filetype 出力ファイルの拡張子。 ymaeda_opentoolsの行列ファイル形式 (独自のファイル形式参照) のいずれかとする。
The extension of the output file, which must be one of the file formats of a matrix (see Special file formats).


◆動作(Behaviour)

引数Aが表す行列を引数filename, filetypeで指定したファイルに出力する。
Output a matrix given by argument A into a file specified by arguments filename and filetype.


◆使用例(Example)

struct matrix A;
write_matrix(A,"data","3dm");