#include <linexi2.h>
Definition at line 70 of file linexi2.h.
◆ linexi2B() [1/2]
Definition at line 80 of file linexi2.cpp.
81 mfunname(
"linexi2B::linexi2B(linexi2& lx)");
82 B = (
double**)
new double[lx.
qlr * lx.
qlr];
83 long i, m;
84 for (i = 0; i <
qlr; i++)
85 for (m = 0; m <
qlr; m++)
87}
◆ ~linexi2B()
◆ linexi2B() [2/2]
linexi2B::linexi2B |
( |
const linexi2B & |
lxB | ) |
|
Definition at line 95 of file linexi2.cpp.
96 mfunname(
"linexi2B::linexi2B(const linexi2B& lxB)");
97 B = (
double**)
new double[lxB.
qlr * lxB.
qlr];
98 long i, m;
99 for (i = 0; i <
qlr; i++)
100 for (m = 0; m <
qlr; m++)
101 B[i][m] = lxB.B[i][m];
102}
◆ copy()
void linexi2B::copy |
( |
const linexi2B & |
lxB | ) |
|
Definition at line 88 of file linexi2.cpp.
88 {
90 long i, m;
91 for (i = 0; i <
qlr; i++)
92 for (m = 0; m <
qlr; m++)
93 B[i][m] = lxB.
B[i][m];
94}
Referenced by operator=().
◆ operator=()
Definition at line 77 of file linexi2.h.
77 {
79 return *this;
80 }
void copy(const linexi2B &lxB)
The documentation for this class was generated from the following files: