Testsuite: increase numerical tolerance for sw_minimal.mod test

Needed for some runners, e.g. lupi
time-shift
Sébastien Villemot 2020-01-27 23:16:13 +01:00
parent 7aeb506143
commit 7f02fe5a78
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ Sigmay_min = minSS.C*Sigmax_min*minSS.C' + minSS.D*M_.Sigma_e*minSS.D';
([Sigmay_full(:) - Sigmay_min(:)]')
sqrt(([diag(Sigmay_full), diag(Sigmay_min)]'))
dx = norm( Sigmay_full - Sigmay_min, Inf);
if dx > 1e-8
if dx > 2e-8
error(sprintf('something wrong with minimal state space computations, as numerical error is %d',dx))
else
fprintf('numerical error for moments computed from minimal state system is %d\n',dx)