XLL+ Class Library

mtx_flat<T>::at

Get a reference to a member of the matrix

[C++]
virtual const T& at(
   size_t i0,
   size_t i1
) const;
virtual T& at(
   size_t i0,
   size_t i1
);

Parameters

i0

Coordinate in dimension 0. In Excel this corresponds to the zero-based row index.

i1

Coordinate in dimension 1. In Excel this corresponds to the zero-based column index.

Return value

Returns a reference to a member of the matrix. The reference returned by form 2 may be used for assignment.

Remarks

This method returns a reference to a specified member of the matrix.

Requirements

Header: plemtx.h

See Also

mtx_flat<T> Class | mtx_flat<T> Methods