home *** CD-ROM | disk | FTP | other *** search
- // SquareMatrix.h
-
- #import <objc/Object.h>
-
- @interface SquareMatrix : Object
- {
- int numberOfRows, numberOfColumns;
- id columnList;
- }
- - initRows:(int)rows ;
- - (float)elementAtRow:(int)row column:(int)column;
- - setElementAtRow:(int)row column:(int)column to:(float)floatValue;
- - transpose;
- - (BOOL) checkRow:(int)row column:(int)column;
- - printMatrix;
- @end
-