This commit is contained in:
2023-05-16 13:12:43 -07:00
parent e084fdd58f
commit 6668806432
2 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ public class ProfilePoint
Concentration = cd;
DeltaPercent = lastProfilePoint is null ? null : (lastProfilePoint.ResistanceRaw - raw) / raw;
LastProfilePoint = lastProfilePoint;
Log10 = new
Log10 = depth == 0 || raw == 0 ? null : new
(
depth: depth,
raw: raw,