関数columnvector_cpy マニュアル

(The documentation of function columnvector_cpy)

Last Update: 2021/12/6


◆機能・用途(Purpose)

列ベクトルをコピーする。
Copy a column vector.


◆形式(Format)

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


◆引数(Arguments)

v コピー元の列ベクトル。
The original column vector to be copied.


◆戻り値(Return value)

メンバmainの配列のアドレスを除く全メンバの値がvと完全に同じ構造体。 戻り値のメンバの値は以下のようになる。
A structure which has members with exactly the same values as those of v except for the array address of member main. The values of members of the return value are as follows.

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

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

  1. vのメンバの直接的なコピーにはなっていないが、 vがymaeda_opentools内の関数を用いて作成したものである限り、 vのメンバの値と一致するはずである。
    Although this is not the direct copy of the corresponding member of v, the values should be equal as long as v was created using any function in ymaeda_opentools.


◆使用例(Example)

struct columnvector v;
struct columnvector w=columnvector_cpy(v);