HRVKit
HRV Analysis for iOS
 All Classes Functions Properties
/HRVKit/HRVResult.h
00001 //
00002 //  HRVResult.h
00003 //  HRVResult
00004 //
00005 //  Created by Alex Shaykevich on 17/03/12.
00006 //  Copyright (c) 2012 YOM. All rights reserved.
00007 //
00008 //
00009 //  HRVResult encapsulates the analysis of the R-R signal through both time and frequency measures.
00010 //
00011 
00012 #import <Foundation/Foundation.h>
00013 
00014 @class OrderedDictionary;
00015 @interface HRVResult : NSObject<NSCoding> {
00016     double lf;
00017     double hf;
00018     double fHF;
00019     
00020     double fHFhf;
00021     double time;
00022     
00023     OrderedDictionary* psd;
00024     double breathPeak;
00025     
00026     double stdev;
00027     double rmssd;
00028     double pNN50;
00029 }
00030 
00034 @property double lf;
00035 
00036 
00040 @property double hf;
00041 
00045 @property double fHF;
00046 
00050 @property double fHFhf;
00051 
00055 @property double time;
00056 
00057 
00061 @property double breathPeak;
00062 
00066 @property(nonatomic, retain) OrderedDictionary* psd;
00067 
00071 @property double stdev;
00072 
00076 @property double rmssd;
00077 
00081 @property double pNN50;
00082 
00086 -(double)fHFxHF;
00087 
00088 @end