Mercurial > hg > octave-lyh
comparison src/DLD-FUNCTIONS/colloc.cc @ 11586:12df7854fa7c
strip trailing whitespace from source files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 17:24:59 -0500 |
parents | 01f703952eff |
children | 72c96de7a403 |
comparison
equal
deleted
inserted
replaced
11585:1473d0cf86d2 | 11586:12df7854fa7c |
---|---|
120 if (ntot < 1) | 120 if (ntot < 1) |
121 { | 121 { |
122 error ("colloc: the total number of roots must be positive"); | 122 error ("colloc: the total number of roots must be positive"); |
123 return retval; | 123 return retval; |
124 } | 124 } |
125 | 125 |
126 CollocWt wts (ncol, left, right); | 126 CollocWt wts (ncol, left, right); |
127 | 127 |
128 ColumnVector r = wts.roots (); | 128 ColumnVector r = wts.roots (); |
129 Matrix A = wts.first (); | 129 Matrix A = wts.first (); |
130 Matrix B = wts.second (); | 130 Matrix B = wts.second (); |