### Bugs fixed in 6.1.1:
* [#3188](https://bugzilla.scilab.org/3188): `part()` was slower than in Scilab 4.1.2.
* [#16342](https://bugzilla.scilab.org/16342): `strcat()` was much slower in Scilab 6.0.2.
+* [#16350](https://bugzilla.scilab.org/16350): in if/while conditions, the empty sparse boolean was considered as TRUE.
* [#16365](https://bugzilla.scilab.org/16365): `median(m,"r")` and `median(m,"c")` yielded wrong results (6.1.0 regression)
### Bugs fixed in 6.1.0:
--- /dev/null
+// =============================================================================
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2020 - Stéphane MOTTELET
+//
+// This file is distributed under the same license as the Scilab package.
+// =============================================================================
+//
+// <-- CLI SHELL MODE -->
+// <-- NO CHECK REF -->
+//
+// <-- Non-regression test for bug 16350 -->
+//
+// <-- Bugzilla URL -->
+// http://bugzilla.scilab.org/16350
+//
+// <-- Short Description -->
+// In if/while conditions, the empty sparse boolean is considered as TRUE.
+
+a = sparse(1)<2;
+a(1) = [];
+b = 1;
+if a, b = 2; end
+assert_checkequal(b,1);