1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use na::Scalar;

use crate::aliases::{TMat, TVec};

/// The `index`-th column of the matrix `m`.
///
/// # See also:
///
/// * [`row`](fn.row.html)
/// * [`set_column`](fn.set_column.html)
/// * [`set_row`](fn.set_row.html)
pub fn column<T: Scalar, const R: usize, const C: usize>(
    m: &TMat<T, R, C>,
    index: usize,
) -> TVec<T, R> {
    m.column(index).into_owned()
}

/// Sets to `x` the `index`-th column of the matrix `m`.
///
/// # See also:
///
/// * [`column`](fn.column.html)
/// * [`row`](fn.row.html)
/// * [`set_row`](fn.set_row.html)
pub fn set_column<T: Scalar, const R: usize, const C: usize>(
    m: &TMat<T, R, C>,
    index: usize,
    x: &TVec<T, R>,
) -> TMat<T, R, C> {
    let mut res = m.clone();
    res.set_column(index, x);
    res
}

/// The `index`-th row of the matrix `m`.
///
/// # See also:
///
/// * [`column`](fn.column.html)
/// * [`set_column`](fn.set_column.html)
/// * [`set_row`](fn.set_row.html)
pub fn row<T: Scalar, const R: usize, const C: usize>(
    m: &TMat<T, R, C>,
    index: usize,
) -> TVec<T, C> {
    m.row(index).into_owned().transpose()
}

/// Sets to `x` the `index`-th row of the matrix `m`.
///
/// # See also:
///
/// * [`column`](fn.column.html)
/// * [`row`](fn.row.html)
/// * [`set_column`](fn.set_column.html)
pub fn set_row<T: Scalar, const R: usize, const C: usize>(
    m: &TMat<T, R, C>,
    index: usize,
    x: &TVec<T, C>,
) -> TMat<T, R, C> {
    let mut res = m.clone();
    res.set_row(index, &x.transpose());
    res
}