関数subtract_columnvector マニュアル

(The documentation of function subtract_columnvector)

Last Update: 2021/12/6


◆機能・用途(Purpose)

2つの列ベクトルの差を計算する。
Calculate the difference of two column vectors.


◆形式(Format)

#include <matrix/operation.h>
inline struct columnvector subtract_columnvector
(const struct columnvector u,const struct columnvector v)


◆引数(Arguments)

u 差の計算に用いる1つ目の行ベクトル\(\myvector{u}\)。
The first row vector \(\myvector{u}\) used in the subtraction.
v 差の計算に用いる2つ目の行ベクトル\(\myvector{v}\)。 サイズは\(\myvector{u}\)と等しくなければならない。
The second row vector \(\myvector{v}\) used in the subtraction, which must have the same size as \(\myvector{u}\).


◆戻り値(Return value)

列ベクトル\(\myvector{u}-\myvector{v}\)を表す構造体。 戻り値のメンバの値は以下のようになる。
A structure which represents a column vector \(\myvector{u}-\myvector{v}\). The values of members of the return value are as follows.

戻り値のメンバ
Member of the return value

Value
size u.size
各\(i\)に対するmain[i]
main[i] for each \(i\)
u.main[i]\(-\)v.main[i]
allocated ’y’


◆使用例(Example)

struct columnvector u,v;
struct columnvector w=subtract_columnvector(u,v);