comparison src/DLD-FUNCTIONS/sqrtm.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 7ef7e20057fa
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
47 47
48 const element_type zero = element_type (); 48 const element_type zero = element_type ();
49 49
50 bool singular = false; 50 bool singular = false;
51 51
52 /* 52 /*
53 * the following code is equivalent to this triple loop: 53 * the following code is equivalent to this triple loop:
54 * 54 *
55 * n = rows (T); 55 * n = rows (T);
56 * for j = 1:n 56 * for j = 1:n
57 * T(j,j) = sqrt (T(j,j)); 57 * T(j,j) = sqrt (T(j,j));