Struct ndarray_rblas::BlasArrayViewMut [] [src]

pub struct BlasArrayViewMut<'a, A: 'a, D>(_);

Requires crate feature "rblas"

Trait Implementations

impl<'a, A> Vector<A> for BlasArrayViewMut<'a, A, Ix>
[src]

The number of elements in the vector.

An unsafe pointer to a contiguous block of memory.

An unsafe mutable pointer to a contiguous block of memory.

The stride within the vector. For example, if inc returns 7, every 7th element is used. Defaults to 1. Read more

impl<'a, A> Matrix<A> for BlasArrayViewMut<'a, A, (Ix, Ix)>
[src]

Returns the number of rows.

Returns the number of columns.

The leading dimension of the matrix. Defaults to cols for RowMajor order and 'rows' for ColMajor order. Read more

An unsafe pointer to a contiguous block of memory.

An unsafe pointer to a contiguous block of memory.

The order of the matrix. Defaults to RowMajor.