1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.GeneralAnalysis.AnalysisResultTemplate
- {
- class PolyphaseDistanceLineResult
- {
- public int LineID { get; set; }
- public Hashtable PointIDs { get; set; }
- public PolyphaseDistanceLineResult()
- {
- PointIDs = new Hashtable();
- }
- }
- class PolyphaseDistanceResult
- {
- public String GraphName;
- public double AvgDistince;
- public double Fc;
- public int Count;
- public double medianAvr;
- public PolyphaseDistanceResult()
- {
- }
- public PolyphaseDistanceResult(String graphName,double avgDistince,double fc,int count)
- {
- this.GraphName = graphName;
- this.AvgDistince = avgDistince;
- this.Fc = fc;
- this.Count = count;
- }
- public PolyphaseDistanceResult(String graphName, double avgDistince, double fc, int count,double medianAvr)
- {
- this.GraphName = graphName;
- this.AvgDistince = avgDistince;
- this.Fc = fc;
- this.Count = count;
- this.medianAvr = medianAvr;
- }
- }
- }
|