ソースを参照

调整增量值算法

td_orm
H Vs 1年前
コミット
533fb93486
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      HealthMonitor.WebApi/Controllers/HealthMonitor/HmBloodPressController.cs

+ 3
- 3
HealthMonitor.WebApi/Controllers/HealthMonitor/HmBloodPressController.cs ファイルの表示

@@ -144,9 +144,9 @@ namespace HealthMonitor.WebApi.Controllers.HealthMonitor
// 偏移参数
var avgOffset = 0.25M;

// 增量值
var systolicInc = systolicAvg.Equals(0M) ? 0:(int)(systolicRefValue - systolicAvg * avgOffset)!;
var diastolicInc = diastolicAvg.Equals(0M) ? 0 : (int)(diastolicRefValue - diastolicAvg * avgOffset)!;
// 增量值=(标定值-平均值)* 0.25
var systolicInc = systolicAvg.Equals(0M) ? 0: (int)((systolicRefValue - systolicAvg)* avgOffset)!;
var diastolicInc = diastolicAvg.Equals(0M) ? 0 : (int)((diastolicRefValue - diastolicAvg) * avgOffset)!;

#endregion



読み込み中…
キャンセル
保存