Struct matrixnum::basic::BasicMatrix [] [src]

pub struct BasicMatrix(_);

Trait Implementations

impl Debug for BasicMatrix
[src]

Formats the value using the given formatter.

impl Clone for BasicMatrix
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BasicMatrix
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl MatrixTrait for BasicMatrix
[src]

Returns a vector with m rows and n columns

Example:

use matrixnum::basic::BasicMatrix;
use matrixnum::matrix_trait::MatrixTrait;

let matrix = BasicMatrix::generate(2, 2, &|_,_| 2f64);

Returns a vector with m rows and n columns with elements of 0

Returns a vector with m rows and n columns with random elements

Generates Matrix from a vector

Returns a row of Matrix

Number of the Matrix rows

Number of the Matrix columns

Returns the element in the position M,N

Multiplication with Matrix

Transpose of a Matrix

Map