fixing style issues

This commit is contained in:
Vincent Barrielle 2014-05-10 12:48:25 +02:00
parent d1a58f960c
commit a213a3da93
2 changed files with 7 additions and 8 deletions

View File

@ -8,8 +8,8 @@ use std::cmp::min;
/// QR decomposition using Householder reflections
/// # Arguments
/// * `m` matrix to decompose
pub fn decomp_qr<N: Clone + Num + Float>(m: &DMat<N>) -> (DMat<N>, DMat<N>) {
/// * `m` - matrix to decompose
pub fn decomp_qr<N: Clone + Float>(m: &DMat<N>) -> (DMat<N>, DMat<N>) {
let rows = m.nrows();
let cols = m.ncols();
assert!(rows >= cols);
@ -36,7 +36,6 @@ pub fn decomp_qr<N: Clone + Num + Float>(m: &DMat<N>) -> (DMat<N>, DMat<N>) {
for ite in range(0u, iterations) {
let mut v = r.col_slice(ite, ite, rows);
//let mut v = r.col_slice<DVec<N>>(ite, rows-ite, rows);
let alpha =
if unsafe { v.at_fast(ite) } >= Zero::zero() {
-Norm::norm(&v)