home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
Programming
/
Documents
/
OOPClass
/
Labs
/
Stack
/
Extensions
/
SquareMatrix
/
SquareMatrix.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-08-11
|
355 b
|
17 lines
// 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