コード例 #1
0
 public LoadIncrementalStateResult GetCorrection(LoadState state, LoadIncrementalState prediction, StructureInfo info, Vector <double> dut, Vector <double> dur) =>
 new LoadIncrementalStateResult(new LoadIncrementalState(0, dur), true, "");
コード例 #2
0
 /// <summary>
 /// Obtain the LoadIncrementalState between two states.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 internal LoadIncrementalState Substract(LoadState other) =>
 new LoadIncrementalState(Lambda - other.Lambda, Displacement - other.Displacement);