Mercurial > hg > octave-nkf
diff liboctave/dbleSVD.h @ 4374:6e3ec3585cec
[project @ 2003-04-07 21:12:34 by jwe]
author | jwe |
---|---|
date | Mon, 07 Apr 2003 21:12:34 +0000 |
parents | 5719210fff4c |
children | e35b034d3523 |
line wrap: on
line diff
--- a/liboctave/dbleSVD.h +++ b/liboctave/dbleSVD.h @@ -54,12 +54,14 @@ } SVD (const SVD& a) - : sigma (a.sigma), left_sm (a.left_sm), right_sm (a.right_sm) { } + : type_computed (a.type_computed), + sigma (a.sigma), left_sm (a.left_sm), right_sm (a.right_sm) { } SVD& operator = (const SVD& a) { if (this != &a) { + type_computed = a.type_computed; sigma = a.sigma; left_sm = a.left_sm; right_sm = a.right_sm;