XLL+ Class Library (7.0)

matrix<T>::add_row

Add a single row to the matrix and populate it

void add_row(
   const T* pt
);

Parameters

pt

Pointer to an array of type T, with at least cols() members.

Remarks

This function adds one new row to the matrix, and fills it with the values provided.

Example

matrix<T>::add_row() Example

Requirements

Header: matrix.h

See Also

matrix<T> Class | matrix<T> Methods