XLL+ Class Library

mtx_ptrs<T> Class

[C++]
class mtx_ptrs<T>

Overview

The mtx_ptrs<T> template is an implementation of the imtx<T> interface, and acts as a container of two-dimensional arrays of type T.

Because it is descended from imtx, it can make use of the matrix methods contained in COper, CXlOper and CXlArray, which support conversion of array data to and from Excel formats.

The class implements a storage method which maintains an array of pointers to homogenous arrays of type T. It is thus efficient as a data holder for existing functions which expect an array of pointers (i.e. T**).

Example

mtx_ptrs<T> Example

Requirements

Header: plemtx.h

See Also

mtx_ptrs<T> Methods | plemtx.h | imtx<T> class | imtx_impl<T> class | mtx_flat<T> class | Walkthrough: Adding a matrix argument