Why process noise covariance is multiplied by delta time when calculating estimate error covariance
I have noticed in both ekf and ukf, the cpp codes write
estimateErrorCovariance_.noalias() += delta * (*processNoiseCovariance);
What's the delta doing here?