File: MWKappa.h

package info (click to toggle)
gtamsanalyzer.app 0.42-6
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 6,112 kB
  • ctags: 866
  • sloc: objc: 34,338; ansic: 8,762; cpp: 384; makefile: 59; sh: 47
file content (26 lines) | stat: -rwxr-xr-x 580 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  MWKappa.h
//  TEST2
//
//  Created by matthew on Thu Aug 14 2003.
//  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
//

#import <AppKit/AppKit.h>
#import "tableBrowser.h"
#import "MWDoubleDictionary.h"

@interface MWKappa : tableBrowser {
   //kappa stuff
    IBOutlet id theMessage;
    IBOutlet id theFileTitle;
    NSMutableString *fileTitles;
    float kappa, effAgSum;
    int totCount, agreements;
    NSMutableDictionary *ef;
    MWDoubleDictionary *myKMatrix;
    NSMutableArray *answers;
    IBOutlet NSTableView *ansTable;
}
-(void) buildKappa;
@end