Changeset 174
- Timestamp:
- 05/22/08 10:44:21 (5 months ago)
- Files:
-
- trunk/QLNet/QLNet/Math/statistics/convergencestatistics.cs (added)
- trunk/QLNet/QLNet/Math/statistics/gaussianstatistics.cs (modified) (2 diffs)
- trunk/QLNet/QLNet/Math/statistics/generalstatistics.cs (modified) (2 diffs)
- trunk/QLNet/QLNet/Math/statistics/riskstatistics.cs (modified) (1 diff)
- trunk/QLNet/QLNet/QLNet.csproj (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/QLNet/QLNet/Math/statistics/gaussianstatistics.cs
r173 r174 52 52 53 53 public void reset() { impl_.reset(); } 54 public void add(double value, double weight) { impl_.add(value, weight); } 54 55 public void addSequence(List<double> data, List<double> weight) { impl_.addSequence(data, weight); } 55 56 … … 203 204 204 205 public void reset() { throw new NotSupportedException(); } 206 public void add(double value, double weight) { throw new NotSupportedException(); } 205 207 public void addSequence(List<double> data, List<double> weight) { throw new NotSupportedException(); } 206 208 trunk/QLNet/QLNet/Math/statistics/generalstatistics.cs
r173 r174 36 36 37 37 void reset(); 38 void add(double value, double weight); 38 39 void addSequence(List<double> data, List<double> weight); 39 40 … … 260 261 public void addSequence(List<double> list) { 261 262 foreach(double v in list) 262 add(v );263 add(v, 1); 263 264 } 264 265 //! adds a sequence of data to the set, each with its weight trunk/QLNet/QLNet/Math/statistics/riskstatistics.cs
r173 r174 49 49 50 50 public void reset() { impl_.reset(); } 51 public void add(double value, double weight) { impl_.add(value, weight); } 51 52 public void addSequence(List<double> data, List<double> weight) { impl_.addSequence(data, weight); } 52 53 trunk/QLNet/QLNet/QLNet.csproj
r172 r174 186 186 </Compile> 187 187 <Compile Include="Math\Solvers1d\Secant.cs" /> 188 <Compile Include="Math\statistics\convergencestatistics.cs" /> 188 189 <Compile Include="Math\statistics\gaussianstatistics.cs" /> 189 190 <Compile Include="Math\statistics\generalstatistics.cs" />