Closed tsieger closed 3 years ago
When left / right side is missing and DTL or DTR is set to [], setdiff(DTR,DTL)]) fails:
[]
setdiff(DTR,DTL)])
Comparison is not defined between datetime and double arrays. Error in perceive (line 323) DT=sort([DTL,setdiff(DTR,DTL)]);
Fixed with initializing the empty arrays with datetime([],[],[]), not [].
datetime([],[],[])
Thanks!
When left / right side is missing and DTL or DTR is set to
[]
,setdiff(DTR,DTL)])
fails:Fixed with initializing the empty arrays with
datetime([],[],[])
, not[]
.