http://bebop.cs.berkeley.edu/oski
For an overview of the end-user interface and the research motivating its design, refer to the original OSKI Design Document.
For copyright and license information, see:
http://bebop.cs.berkeley.edu/oski/license.txt
This Developer's Guide is extracted directly and automatically from the latest source code, and targets OSKI developers and advanced users of the library. These users may wish to read the Overview of the Implementation for an explanation of the major components and design of this implementation.
. The elements of an
matrix
are denoted by
, i.e., we use 1-based indexing for logical matrices.my_array, ptr, ind), or by capital letters (e.g.,
). However, unlike logical matrix objects, we reference individual elements using square brackets and adopt the C-style 0-based indexing. For instance, we denote the elements of an array
of length
by
.
1.4.6