elementary-row-operation-verifier 0.0.1

A tool to verify the correctness of elementary row operations on matrices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 行操作

use crate::matrix::{self, Matrix};

pub fn add_multiple(m: &Matrix, target: usize, source: usize, mult: f64) -> Matrix {
    matrix::add_multiple(m, target, source, mult)
}

pub fn multiply_row(m: &Matrix, target: usize, mult: f64) -> Matrix {
    matrix::multiply_row(m, target, mult)
}

pub fn replace_row(m: &Matrix, target: usize, source: usize) -> Matrix {
    matrix::replace_row(m, target, source)
}