Thickness01-Thickness14
v2_52_0-Tests editorconfig net8.0
This commit is contained in:
@ -48,7 +48,6 @@ public partial class ProcessData : IProcessData
|
||||
public string ThicknessFourteenCriticalPointsAverage { get; set; }
|
||||
public string ThicknessFourteenCriticalPointsStdDev { get; set; }
|
||||
public string ThicknessFourteenMeanFrom { get; set; }
|
||||
public string ThicknessFourteenPoints { get; set; }
|
||||
|
||||
List<object> Shared.Properties.IProcessData.Details => _Details;
|
||||
|
||||
@ -360,7 +359,6 @@ public partial class ProcessData : IProcessData
|
||||
}
|
||||
if (thicknessPoints.Count != 14)
|
||||
{
|
||||
ThicknessFourteenPoints = string.Empty;
|
||||
ThicknessFourteenMeanFrom = string.Empty;
|
||||
ThicknessFourteenCenterMean = string.Empty;
|
||||
ThicknessFourteen3mmEdgeMean = string.Empty;
|
||||
@ -372,7 +370,6 @@ public partial class ProcessData : IProcessData
|
||||
}
|
||||
else
|
||||
{
|
||||
ThicknessFourteenPoints = string.Join(",", thicknessPoints);
|
||||
ReadOnlyCollection<double> thicknessTenPoints = new(thicknessPoints.Take(10).ToArray());
|
||||
double thicknessFourteenCriticalPointsAverage = thicknessTenPoints.Average(); // 15
|
||||
double thicknessFourteenCriticalPointsStdDev = StandardDeviation(thicknessTenPoints); // 16
|
||||
|
Reference in New Issue
Block a user