1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
|
Changes between version 5.5.1 and 5.5.2
=======================================
Graphics Evolutions
===================
* fec function can now plot meshes based on any convex polygon type (not only triangles).
* New datatips positions are now available: "left", "right", "upper", "lower".
* New contour2dm function.
Toolbox Skeleton
=================
* Modelica user-defined block has been added to xcos_toolbox_skeleton.
Removed Functions
=================
* %asn removed. Please use delip instead.
* chart removed. Please use nicholschart instead.
* IsAScalar removed. Please use isscalar instead.
* jmat removed. Please use flipdim instead.
* mfft removed. Please use fft instead.
* milk_drop removed.
* msd removed. Please use stdev instead.
* nfreq removed. Please use tabul instead.
* pcg removed. Please use conjgrad instead.
* regress removed. Please use reglin instead.
* relocate_handle removed.
* st_deviation removed. Please use stdev instead.
* xmltochm removed.
* xsetm removed. Please use ged instead.
Compilation
===========
* Required version of JOGL updated to 2.2.4 (See bugs #12788 & #13586).
Scilab Bug Fixes
================
* Bug #8066 fixed - There was no OK button in x_choose window.
* Bug #9890 fixed - xarrows demonstration was added to Graphics/Basic functions category.
* Bug #12788 fixed - All graphics were displayed in red under some platforms.
* Bug #12842 fixed - Scilab could not be launched under some platforms (ATOMS internal library loading problem).
* Bug #13372 fixed - xsetm should have been removed in Scilab 5.5.0.
* Bug #13437 fixed - axis drawn by drawaxis used different font than those drawn by plot.
* Bug #13462 fixed - Low level functions modified bounds even with auto_scale="off".
* Bug #13494 fixed - Wrong vertical range of plot3d and plot3d1 fixed.
* Bug #13531 fixed - sylv help page fixed to include the real Sylvester equation.
* Bug #13549 fixed - Slider uicontrols triggered three callbacks instead of one.
* Bug #13551 fixed - Marks with null size were not correctly exported in vectorial formats.
* Bug #13586 fixed - Scilab compilation failed with recent versions of JoGL package.
* Bug #13605 fixed - harmean returned an inverted result when called with parameters "r" or "c".
* Bug #13608 fixed - logm produced an error with complex values.
* Bug #13619 fixed - xstringl returned wrong first point.
* Bug #13640 fixed - Graphics in isoview mode were too small when they were in subplots.
* Bug #13655 fixed - acos and asin returned wrong results when input argument was a matrix
of size greater than 1 and containing at least one NaN value.
* Bug #13673 fixed - Anti-aliasing of xpoly marks had not a proper render.
* Bug #13674 fixed - User .wgetrc configuration file is now by-passed when ATOMS does not use a proxy.
* Bug #13676 fixed - An invisible figure could not be exported.
* Bug #13677 fixed - Indentation of examples in assert_checkerror help page was not correct.
* Bug #13679 fixed - There were invalid subticks in log scale after a copy.
* Bug #13681 fixed - Calling cdfnor to get the X vector could produced a vector with some NaN values.
* Bug #13684 fixed - SciNotes editor component did not fill all the window content pane when wrap-lines
option was set to false.
* Bug #13685 fixed - LaTeX was not detected when specified in ticks_format.
* Bug #13689 fixed - There were errors in reading enum from hdf5 files.
* Bug #13690 fixed - tight_limits property can now manage X, Y and Z axes separately.
* Bug #13692 fixed - group returned an error for a discrete dynamical system with a specified sample time.
* Bug #13694 fixed - Calling wfir without input arguments produced an error instead of calling wfir_gui.
* Bug #13695 fixed - Scilab used bash-specific features in scripts.
* Bug #13702 fixed - Problems with * prefix for modified files in SciNotes fixed.
* Bug #13706 fixed - plot3d([1 1 1]) randomly crashed.
* Bug #13712 fixed - Details added in strcat help page for strcat(strings, "", "r") case.
* Bug #13721 fixed - Writing in a file opened in r+ mode was not possible.
* Bug #13723 fixed - It was not possible to insert a single double in double[][].
* Bug #13725 fixed - Polyline was not correctly filled with big values.
* Bug #13731 fixed - xmlDelete could be very slow.
* Bug #13733 fixed - fmt could not be used as a singular optional argument in colorbar.
* Bug #13735 fixed - There was no check of frameflag value in plot2d.
* Bug #13741 fixed - An invisible figure could not be printed under Windows.
* Bug #13742 fixed - Figure was not well-printed when there was a xstring with LaTeX.
* Bug #13752 fixed - The 'Supported compilers' page was outdated.
* Bug #13758 fixed - x_mdialog interpreted 'F' and 'T' as boolean values
whereas it should have interpreted '%F' and '%T' instead.
* Bug #13766 fixed - Setting figure_size property led to wrong display and figure properties values.
* Bug #13772 fixed - Xcos GUI was not locked while setting parameters.
* Bug #13791 fixed - ricc no longer managed the 'invf' method.
Known incompatibilities
=======================
* Undocumented use of exec with "errcatch" as third input argument now returns an error:
exec(path, mode, 'errcatch') must be replaced by exec(path, 'errcatch', mode)
Changes between version 5.5.0 and 5.5.1
=======================================
Removed Functions
=================
* datatipContextMenu and datatipEventhandler removed (See Bug #8646).
* Second output argument of add_param removed (See SEP #132).
Compilation
===========
* Required version of Arpack-ng updated to 3.1.5 (See Bug #13058).
Scilab Bug Fixes
================
* Bug #6979 fixed - rlist help page was not clear.
* Bug #7203 fixed - titlepage help page was not clear.
* Bug #7549 fixed - edit_curv did not disable standard plot menus.
* Bug #7804 fixed - Small improvements added to struct help page.
* Bug #8502 fixed - Axis labels wrongly used number with 3 digits in the exponent.
* Bug #8646 fixed - The datatips contextual menu opened a selection list which
was not ergonomic.
* Bug #8781 fixed - There was no error message when error was called with
a complex value.
* Bug #8898 fixed - getdate help page improved.
* Bug #9052 fixed - Some demonstrations in graphics were automatically closed at
the end of their execution.
* Bug #9252 fixed - Some error calling sequences produced screwed display.
* Bug #9381 fixed - parallel_run did not work under CentOS (GLIBC issue).
* Bug #9783 fixed - Insertion overloading did not seem to work with mlists.
* Bug #10168 fixed - kron produced a segfault in some cases.
* Bug #10336 fixed - Default key of rand could change from "uniform" to "normal".
* Bug #10555 fixed - Scilab failed to build with some configure options.
* Bug #10583 fixed - ./configure --without-xcos did not work.
* Bug #10646 fixed - ./configure ARPACK check linked `-larpack -lblas` instead
of `-larpack -llapack -lblas`.
* Bug #10777 fixed - "Home" and "End" keys were not trapped in CLI mode.
* Bug #10784 fixed - clc was not available in CLI & ADV-CLI modes.
* Bug #11035 fixed - Scilab crashed when a file created with Matlab 7.12 was loaded.
* Bug #11284 fixed - Calling sequences added in file help page.
* Bug #11405 fixed - Hypermatrix support added for extraction.
* Bug #12580 fixed - Demonstration GUI now displays an arrow if a selected item
has sub-categories.
* Bug #12620 fixed - uicontextmenus size was wrong when children were created invisible.
* Bug #12700 fixed - edit_curv (used by CURV_f) was broken.
* Bug #12834 fixed - Graphics did not work under Fedora (GLIBC issue).
* Bug #12918 fixed - OpenSUSE 12.3 x64 did not have gluegen2-rt in library path.
* Bug #12986 fixed - Scilab did not start under CentOS 5.9 (GLIBC issue).
* Bug #12987 fixed - Scilab did not start under Ubuntu 10.04 (GLIBC issue).
* Bug #13058 fixed - eigs produced wrong results in some cases.
Arpack-ng library has been updated to fix this bug.
* Bug #13180 fixed - surf did not handle degenerate cases.
* Bug #13291 fixed - xmltojar([],[],'ja_JP') might lead to a crash when the
locale was not system-wide available.
* Bug #13299 fixed - The pkgconfig file did not used the right Tcl/Tk version.
* Bug #13313 fixed - Setting datatips orientation did not disable
auto_orientation mode.
* Bug #13316 fixed - There were missing tooltips on File Browser buttons.
* Bug #13321 fixed - Default figure "visible" property was ignored when creating
a new figure.
* Bug #13324 fixed - Legends display were completely modified when an item was clicked
and modified.
* Bug #13330 fixed - gtk2-oxygen theme engine (used by KDE) crashed Scilab.
* Bug #13331 fixed - Users are no longer able to write inconsistent options to mopen.
mopen(file, "wr") now exits with a proper error.
* Bug #13333 fixed - Selecting "Offline mode" in Scilab installer installed
Scilab in "Command line mode" (without GUI modules).
* Bug #13336 fixed - In SciNotes, it was not possible to complete brackets only at the
end of a line.
* Bug #13339 fixed - Kronecker tensor product now works on hypermatrices.
* Bug #13343 fixed - In console popup menu, "help about a selected text" moved
from bottom to top for better consistency with SciNotes.
* Bug #13344 fixed - User-defined ticks were not drawn at the right position.
* Bug #13345 fixed - Scilab did not start under Debian Wheezy (GLIBC issue).
* Bug #13346 fixed - filter did not work for simple delays.
filter help page improved.
* Bug #13349 fixed - Double-clicking on a MAT-file in the file browser did not load it.
* Bug #13350 fixed - There was a buffer overrun with call.
* Bug #13351 fixed - xstringb failed with LaTeX code.
* Bug #13358 fixed - intersect and unique were slow due to an issue in quicksort implementation.
* Bug #13359 fixed - Nyquist datatip with symmetry now displays properly
negative frequencies.
* Bug #13364 fixed - Scilab did not start under CentOS 6.5, RedHat 5.4, RedHat 5.5 (GLIBC issue).
* Bug #13365 fixed - Data bounds were not correctly updated in 3-D.
* Bug #13367 fixed - ATOMS default repository was 5.4 one instead of 5.5.
* Bug #13369 fixed - samplef now works with 0 frequencies input values
and normalized frequencies. sample and samplef now consistently
return a row vector.
* Bug #13377 fixed - showprofile now displays lines numbers.
* Bug #13378 fixed - The "Console" handle display was not homogeneous with others.
* Bug #13381 fixed - eigs was failing when using a function as first input argument.
* Bug #13383 fixed - newaxes help page did not mention the call with a graphic
handle as input.
* Bug #13384 fixed - uicontrol help page did not mention axes could be contained
in frame style uicontrols.
* Bug #13386 fixed - An exception occurred when using entity picker on legends.
* Bug #13388 fixed - Display of Waitbar and Progressionbar handles did not show
Tag and Userdata properties.
* Bug #13397 fixed - saveGui() returned an undocumented boolean parameter (success/failure flag).
* Bug #13401 fixed - Closing Scilab during halt() did not quit Scilab process.
* Bug #13402 fixed - Bounding boxes of xarcs were not correct.
* Bug #13403 fixed - Regression on axes labeling fixed.
* Bug #13404 fixed - rect property was not taken into account in polarplot.
* Bug #13409 fixed - permute(x, dims) failed when dims was greater than the dimensions of size(x).
It now treats extra dimensions as 1.
* Bug #13418 fixed - crossover_ga_binary help page was not clear.
Mix to check the crossover positions also added.
* Bug #13419 fixed - mutation_ga_binary help page was not clear and lacked examples.
* Bug #13420 fixed - mutation_ga_binary did not calculate multiple mutations properly.
* Bug #13421 fixed - Callback functions for genetic algorithms were missing.
Now the user can set functions to stop iterations and access the population.
* Bug #13422 fixed - Genetic algorithms did not log the minimum and maximum values properly.
* Bug #13424 fixed - crossover_ga_binary algorithm was not the classical point crossover one.
Binary length usage also fixed.
* Bug #13425 fixed - optim_ga and optim_moga needed optimization.
* Bug #13426 fixed - optim help page was written with bad indentation.
* Bug #13432 fixed - xstringl help page was not clear about fonts and LaTeX-rendered text.
* Bug #13435 fixed - Scilab under Windows crashed when calling xmlRemove on the first child.
* Bug #13438 fixed - drawaxis did not return the handle of the created axis.
* Bug #13441 fixed - Scilab crashed when uicontrol was called with a string for border property.
* Bug #13459 fixed - A warning message about libcurl.so version was displayed at Scilab startup.
* Bug #13471 fixed - ilib_build_jar entered an infinite loop when used on an empty directory.
* Bug #13481 fixed - varn did not work on rational fractions.
* Bug #13482 fixed - pfss changed the variable of the rational fractions.
varn was also modified to keep variable "dt" of rational fractions.
* Bug #13491 fixed - intg now properly exits when the user function produces an error.
* Bug #13501 fixed - Typos fixed in English help pages.
* Bug #13503 fixed - xarrows made Scilab crashed in some cases.
* Bug #13507 fixed - Imaginary part in result of a complex power was missing (Real^Complex).
* Bug #13509 fixed - It was not possible to have an empty prefix with xmlNs.
* Bug #13510 fixed - Datatip callback cleared 'd'.
* Bug #13512 fixed - dae crashed if the evaluation function had wrong prototype.
* Bug #13515 fixed - There were wrong results for matrix/hypermatrix with bitset.
* Bug #13516 fixed - Russian and Japanese help pages were missing.
* Bug #13524 fixed - strtod did not ignore the tabs and CR.
* Bug #13527 fixed - hilb did not check properly the type of the first input argument.
* Bug #13543 fixed - "slider" uicontrols did not work with the mouse wheel.
* Bug #13554 fixed - rubberbox returned wrong values.
* Bug #13579 fixed - bar displayed useless warnings.
* Bug #13585 fixed - SuiteSparse 4.3.1 was not supported.
* Bug #13588 fixed - Default values of "event_handler" and "event_handler_enable" properties
were not taken into account when creating a new figure.
Xcos Bug Fixes
==============
* Bug #9996 fixed - The RELATION_OP box drawn in the workspace was not compliant with the programming.
* Bug #11823 fixed - Ctrl+F2 shortcut did not work on a selected block.
* Bug #12718 fixed - Modelica Generic block reshaped the output ports and the label was double-written.
* Bug #12723 fixed - Loading a .scg file in CURVE block produced an error.
* Bug #12751 fixed - cdummy_ entry point was not found when using Code Generation.
* Bug #13285 fixed - There was no appropriate example of the syntax for scifunc_block_m GUI
on the help page.
* Bug #13318 fixed - matrix * vector multiplication using MATMUL did not work properly.
* Bug #13327 fixed - Sawtooth generator icon was not a Sawtooth.
* Bug #13385 fixed - TOWS_c and FROMWSB Xcos blocks needed better examples on how
to get or write a Scilab variable.
* Bug #13391 fixed - scifunc_block_m help page was not clear about the block use.
An example has been added.
* Bug #13396 fixed - MBLOCK did not work with an external file containing Modelica class.
* Bug #13436 fixed - STEP function was not delayed with the Continuous Fix Delay.
* Bug #13443 fixed - There was no image on CSCOPXY3D block.
* Bug #13513 fixed - EXPRESSION block with "u1" as expression failed with a
singularity error.
* Bug #13514 fixed - External modules loader_pal.sce file contained absolute path.
* Bug #13540 fixed - Tkscale block did not respect min and max value.
* Bug #13553 fixed - "Export all diagrams" failed if the directory did not exist.
Known issues
=============
* Under GNU/Linux with KDE and under some distributions, gtk2-oxygen theming engine
crashes Scilab. As a workaround, please consult:
http://bugzilla.scilab.org/show_bug.cgi?id=13330#c6.
Besides these points, do not hesitate to report bugs on:
http://bugzilla.scilab.org/
Changes between version 5.4.1 and 5.5.0
=======================================
New Features
=============
* New special functions:
- erfi - The imaginary error function.
- dawson - Compute the Dawson function (scaled imaginary error).
* New functions introduced:
- getURL - Download a URL (HTTP, HTTPS, FTP...)
- splitURL - Split a URL (HTTP, HTTPS, FTP...)
- cov - Covariance matrix. Deprecates mvvacov. See bug #11896.
- ismatrix - Check if a variable is a matrix. See bug #10456.
- isrow - Check if a variable is a row vector. See bug #10456.
- iscolumn - Check if a variable is a column vector. See bug #10456.
- issquare - Check if a variable is a square matrix. See bug #10456.
- cross - Vector cross product. See bug #9941.
- members - Number of occurrences and linear indexes of common values between
two matrices of the same type. See bug #12705.
- jcreatejar - Creates a Java archive (JAR) from a set of files / directories
- ilib_build_jar - Builds Java packages from sources into a JAR file
- ifftshift - Inverses FFT shift
- unwrap - Unwraps/unfolds a Y(x) profile
- getPreferencesValue/setPreferencesValue - Get or set values in the preferences file.
- htmlDump/htmlRead/htmlReadStr/htmlWrite - Read and write data from/in HTML files.
- numderivative - Approximate derivatives of a function (Jacobian or Hessian).
* Complete set of functions to read and write any HDF5 file from Scilab added.
* New Solver:
- daskr - differential-algebraic system solver with rootfinding 'daskr', using
BDF methods with direct and preconditioned Krylov linear solvers, based on ODEPACK.
* Based on JIMS external module, Scilab provides functions to interact
with Java objects.
* erf, erfc, erfcx and calerf functions now support complex arguments.
* isnum has been redesigned in native code. Performance improvements up to 130x.
See bug #10404
* Usage of the '$' keyword in part function allowed.
* The histplot command can now be used with the option polygon=%t/%f to add the
frequency polygon chart (Thanks to Mehran Khorshidi).
* Multi level completion on mlist, struct, XML structures...
* Variable browser improvements:
- The variable browser also shows the size of integers and the user type of
the tlist/mlist.
See bugs #12523 and #10409.
- It is now possible to delete variables from the variable browser.
See bug #9447.
- A user can now plot variables from the variable browser (this functionality was
already available in the variable editor).
* Added lighting effect for plot of surfaces. Lighting can be enabled
creating light objects or disabled by deleting them. The following function
was introduced:
- light - Creates a light graphic object.
* Localization:
- Multiple domains in localization managed.
- addlocalizationdomain function added for a new domain creation.
- Optional parameter added to gettext to manage domains.
- tbx_generate_pofile and tbx_build_localization added to create localization files for
modules.
* Windows Solution updated to Visual Studio 2012.
* -keepconsole option added for Scilab Windows to facilitate debugging.
Calling Scilab with this option will leave the console box window opened at startup.
* License update: switch to the CeCILL 2.1.
Improvements
=============
* New calling sequence allowed for nicholschart: nicholschart(gains, phases, colors).
See bug #7828.
* qp_solve can now take up to 5 output arguments. The last one is an error flag,
if it is present, then the function will display a warning instead of an error.
See bug #10269.
* graypolarplot has been improved in terms of performances and rendering.
See bug #12641.
* nthroot is now vectorizable.
See bug #12678.
* New optional output argument for routh_t.
See bug #12829.
* modulo and pmodulo now support integers & hypermatrices (See bug #13002).
* test_run can now separate 32-bit systems from 64-bit ones.
* pol2str: now handles polynomials with complex coefficients and hypermatrices (See bug #13109).
* nanreglin: reglin with arguments containing NaNs (See bug #13208).
* New optional input argument added to matfile2sci (append or write the output file).
GUI Refactoring and Improvements
================================
* New uicontrols styles:
- tab: component which enables the user to switch between sets of uicontrols by
clicking on a tab.
The children components are "frame" uicontrols.
Two dedicated properties have been added to configure this component:
- title_position: Position of the tabs
- title_scroll: Indicates if tabs must all be displayed at a time or
managed with scroll features.
- layer: Component which enables the user to make parts of a GUI visible/invisible
programmatically.
- spinner: Component which enables the user to select/edit a value between bounds
with a fixed step.
* New uicontrols properties:
- border: Used to set some decoration properties on "frame" uicontrols.
These decorations can be created and initialized with the createBorder
and the createBorderFont functions.
- scrollable: Used to add scrolling capabilities on "frame" uicontrols.
- groupname: Used to group "radiobutton" and "checkbox" uicontrols for an easier
management.
- icon: Add an icon to "pushbutton", "text" and "frame" uicontrols.
- margin: Empty space around uicontrols.
* New uimenu properties:
- icon: add an icon on the left of the menu label.
* "listbox" and "popupmenu" style uicontrols can now manage colors selection, icons, background
and foreground colors when the "String" property is set to a matrix matching the format:
["#color1", "Item1", "#background1", "#foreground1"; "#color2", "Item2", ..., ...]
["icon1", "Item1", "#background1", "#foreground1"; "icon2", "Item2", ..., ...]
with "#color1", "#background1" and "#foreground1" in HTML format #XXXXXX.
Then the component will display a colored box or icon on the left of the associated string,
and different background/foreground colors for items.
* New management of uicontrols positioning:
In previous versions, uicontrols position was managed in an absolute way through
their "Position" property and the "Resizefcn" property of their parent figure.
Using the new layout management in figures and "frame" style uicontrols, position
is now managed in an automatic way based on Java layouts.
New dedicated properties have been added in figure and uicontrols:
- layout: layout type.
- layout_options: configuration of the layout.
Options can be initialized with the createLayoutOptions function.
Type "help layouts" in Scilab for more information about available types and options.
Uicontrols position is then managed through the "constraints" property.
A new createConstraints function has been added to managed these contraints.
* New figures properties:
- icon: Allows to customize the figure icon.
- menubar: allows to create windows without any menu bar (default menus will not be created).
- menubar_visible: Manages menu bar visibility.
- toolbar: Allows to create windows without any toolbar.
- toolbar_visible: Manages toolbar visibility.
- infobar_visible: Manages infobar visibility.
- resize: Allows to lock window size.
- dockable: Allows to create dockable/standard figures.
- default_axes: Allows to manage default axes creation in figures.
* The figure "visible" property management has evolved and offers new possibilities:
- When the figure is docked, this property manages the visibility
of components inside the figure (uicontrols, axes, ...).
In previous releases, this same property setting only managed axes.
- When the figure is not docked, this property manages the visibility
of the whole figure including its decorations.
* New way to create GUI using XML files:
- Created GUI using the figure/uicontrol/uimenu functions can now be saved in
this new format using saveGui function.
- XML files in this format can be loaded in Scilab using the loadGui function.
This function aims at creating GUI in a more efficient way.
* New rendering for GUI/uicontrols:
In this version, uicontrols use the defaults of the OS Look & Feel.
Some properties default values are not set by Scilab and then can be different from an
OS to another.
To come back to the previous and deprecated behavior, you can use the related
property on the "Console" handle:
set(get(0), "UseDeprecatedSkin", "on");
Note that this deprecated behavior will be removed in future versions.
* New way to access uicontrols using a path containing their "Tag" and their parent(s) "Tag" property.
See the set and get functions help page for more details.
* New display for uicontrols handles properties. Only properties used for Java rendering are displayed.
To display all available properties, use the "ShowHiddenProperties" "Console" property.
Graphics Evolutions
===================
* set function prototype has been modified to allow the user to set multiple
properties at once: set(h, "Property1", Value1, "Property2", Value2, ...)
* newaxes function now allows to create axes in "frame" uicontrols.
* clf function now also works with "frame" uicontrols.
* New axes properties:
- ticks_format: Format of the ticks labels.
- ticks_st: Scales and translates factors applied to ticks position when formatting
the ticks labels.
- auto_margins: Activated by default, this property lets Scilab compute margins
needed to display axes decorations (titles, labels, ...).
- grid_thickness: Thickness of the grid plotting.
- grid_style: Style of the grid plotting.
- label_font_style: Font style used to draw the labels.
* New legends properties:
- line_width: Width of the drawn line.
- mark_count: Number of the drawn marks.
* New polyline properties:
- mark_offset: Offset before the first mark.
- mark_stride: Step between consecutive marks.
- display_function: Name of the function used to customize the information
displayed in all the datatips of this polyline.
This function can be overloaded by setting a display
function on each datatip handle.
- display_function_data: Additional data needed for datatips display function.
- datatips: Handles of the datatips of the polyline.
* New Matplot property added :
- rect: specifies the rectangle where the Matplot will be drawn.
* Datatips properties have been renamed for better readability:
- tip_data --> data
- tip_box_mode --> box_mode
- tip_label_mode --> label_mode
- tip_orientation --> orientation
- tip_3component --> z_component
- tip_auto_orientation --> auto_orientation
- tip_interp_mode --> interp_mode
- tip_disp_function --> display_function
Differential Equations
======================
* Netlib's Quadpack, used for definite integration, has been updated to match the upstream.
SciNotes
========
* Autosave feature can now use %date to append the current date to the backup filename
(See bug #12712).
Xcos
====
* New DAE solver: DDaskr, using BDF methods with direct Newton and preconditioned Krylov
linear solvers, which includes rootfinding.
It is available from dae function.
* In Modelica initialization GUI, inputs (eg. sensor) were not handled.
* Sundials updated to the "2.5.0" version, keeping our modifications.
* JGraphX updated to the "2.1.0.7" version, updating our hooks performance.
* API changed in the scicos_block4 interface: the uid value is not available
inside the simulation function.
* API change: In scicos_block4.h, "Residute" renamed to "Jacobian".
* xcosAddToolsMenu added to let the user perform some actions on the graph.
* CBLOCK4 block added to the "User-Defined Functions"
* xcos_debug_gui function added for a simple use of the Debug block.
* tbx_build_pal_loader function added to ease external module creation (See SEP #120).
* Event management demonstrations added.
Toolbox Skeleton
=================
* Some Xcos specific content added to xcos_toolbox_skeleton help pages.
Compilation
============
* Minimal version of Flexdock (1.2.4) enforced.
* Minimal version of JoGL (2.1.4) enforced.
* Minimal version of JLaTeXMath (1.0.3) enforced.
* New dependencies to manage EMF export:
- freehep-graphics2d.jar
- freehep-graphicsio-emf.jar
- freehep-graphicsio.jar
- freehep-io.jar
- freehep-util.jar
Note: --without-emf can be used to disable this feature.
Obsolete & Removed Functions
============================
* Scilab 5.5.X family will be the latest family working under Windows XP/2003.
* Vector ^ scalar syntax declared as obsolete. See bug #11524
* The third argument of poly function will be more strict.
Only the following strings are allowed: "roots", "coeff", "c", "r".
* Option and direction arguments of gsort will be more strict in all cases.
Only the following strings are allowed:
- option: "r" "c" "g" "lr" "lc"
- direction : "d" "i"
* nfreq tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use tabul instead.
* IsAScalar tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use isscalar instead.
* chart tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use nicholschart instead.
* Second output argument of add_param tagged as obsolete. Will be removed in Scilab 5.5.1.
* mvvacov tagged as obsolete. Will be removed in Scilab 6.0.0.
Please use cov instead.
* mfft tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use fft instead.
* relocate_handle tagged as obsolete. Will be removed in Scilab 5.5.1.
* msd and st_deviation tagged as obsolete (See bug #7593). Will be removed in Scilab 5.5.1.
Please use stdev instead.
* pcg tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use conjgrad instead.
* milk_drop tagged as obsolete. Will be removed in Scilab 5.5.1.
* datatipGetStruct tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use 'datatips' property instead.
* regress tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use reglin instead.
* %asn tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use delip instead.
* jmat tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use flipdim instead.
* perl tagged as obsolete. Will be removed in Scilab 6.0.0.
* numdiff and derivative tagged as obsolete. Will be removed in Scilab 6.0.0.
Please use numderivative instead.
* xmltochm tagged as obsolete. Will be removed in Scilab 5.5.1.
* dft removed, please use fft instead.
* sscanf removed, please use msscanf instead.
* fscanf removed, please use mfscanf for files opened with mopen or read for files opened
with file instead.
* fprintf removed, please use mfprintf for files opened with mopen or write for files
opened with file instead.
* clear_pixmap removed, please use drawlater/drawnow instead.
* pixmap property removed for figures, please use drawlater/drawnow instead.
* demo_message and demo_mdialog removed.
* with_embedded_jre removed.
* draw removed.
* fit_dat removed. Please use datafit instead.
* winclose removed. Please use close instead.
* datatipInitStruct and datatipRedraw removed.
* getfont, getmark, getlinestyle and getsymbol removed. Please use ged instead.
Known incompatibilities
========================
* Using => or =< now returns an error. See bug #2345.
* or/and functions now fix reals value before working on them. See bug #7666.
* a*b*-c+d is now interpreted as (a*b*(-c))+d instead of a*b*(-c+d). See bug #13168.
* Extracting children from an empty matrix of handles now returns an error.
For example: f=gcf(); f.children(1).children.children returns an error.
* Figure anti_aliasing property behavior changed:
- "off": No anti-aliasing activated on the figure.
- "2x", "4x", "8x", "16x": anti-aliasing activation will have no effect on most plateforms.
Scilab Bug Fixes
================
* paramfplot2d: When theta input argument was a column vector, an error occurred.
* Bug #1253 fixed - There was no possibility to draw only few marks on a polyline which
contained a lot of points.
* Bug #1751 fixed - Margins were not computed according to contents.
* Bug #2067 fixed - Scilab crashed when plot was called with a large numerical value.
* Bug #2267 fixed - Wrong error message when ticks locations and labels did not have the
same sizes.
* Bug #2345 fixed - Use of operators => and =< did not lead to an error.
* Bug #2416 fixed - Particular case (string([]) returns []) has been added in string help
page.
* Bug #2802 fixed - convstr did not convert non ascii chars.
* Bug #3511 fixed - strindex did not return all occurrences in regexp mode.
* Bug #3928 fixed - An error was returned when a matrix was flipped along the third
dimension.
* Bug #4042 fixed - squeeze returned a hypermatrix instead of a matrix when at least one
dimension was equal to 1.
* Bug #4083 fixed - The numdiff and derivative functions were duplicates and are
now tagged as obsolete and replaced by numderivative. See SEP #130.
* Bug #4085 fixed - num2cell help page added.
* Bug #4177 fixed - find function moved to the "elementary_functions" module.
* Bug #4229 fixed - delip did not return an error if one element of its first input
argument was negative.
* Bug #4383 fixed - csim with "step" and "impuls" now works with direct feedthrough.
* Bug #4401 fixed - isnum did not recognize all constants or some complex numbers.
* Bug #4481 fixed - iir help page updated to precise that frq can be a scalar.
* Bug #4490 fixed - Input argument of sinc function moved to rad.
* Bug #4649 fixed - License issue in xs2ppm help page fixed.
* Bug #4677 fixed - xclick did not return correct mouse position on keyboard event.
* Bug #4692 fixed - Export did not work while xgetmouse was waiting.
* Bug #4731 fixed - lqr failed when the time domain of an input was a number.
* Bug #4743 fixed - Graphics with too big or too small values did not work.
* Bug #4858 fixed - libintl.h was missing in binary versions but included in localization.h.
* Bug #4965 fixed - Setting links property for a handle of type legend did not work.
* Bug #5016 fixed - condestsp could return different results when repeated calls were performed.
* Bug #5017 fixed - norm rewritten to take benefit from the Lapack package performance.
* Bug #5073 fixed - New parameter added in strtod function (decimal separator).
* Bug #5205 fixed - permute was slow for large hypermatrices.
* Bug #5207 fixed - grand can now return a hypermatrix.
* Bug #5232 fixed - 'frame' uicontrols children now follow the frame displacement.
* Bug #5365 fixed - makecell help page was in the "compatibility functions" directory
instead of being in "data_structures".
* Bug #5539 fixed - sylv help page was wrong in the discrete-time case.
* Bug #5616 fixed - typeof(uiCreateTree(...)) returned "Tree" instead of "uitree".
* Bug #5694 fixed - numdiff help page clarified.
* Bug #5779 fixed - xnumb number format was too small (+ unit test added).
* Bug #5826 fixed - Graphic windows did not redirect key events in console.
* Bug #5844 fixed - grayplot did not have a logflag option.
* Bug #5886 fixed - There was no property labels_font_style on axis.
* Bug #6037 fixed - macrovar help page improved.
* Bug #6168 fixed - zpbutt, zpch1, zpch2 and zpell help pages were unclear.
* Bug #6191 fixed - It was not possible to set thickness and line_style properties for a grid.
* Bug #6305 fixed - dsearch function did not work with integers, strings and hypermatrices.
* Bug #6306 fixed - It is now possible to compute an histogram instead of plotting it
with new function histc(). Besides, histplot can now return the computed data.
* Bug #6363 fixed - It was not possible to create figures without menubar/toolbar.
* Bug #6390 fixed - The "external" argument of odedc was not well documented and
not tested.
* Bug #6404 fixed - xrects help page was not clear about argument specification.
* Bug #6427 fixed - full([%T %F]) returned an error message.
* Bug #6466 fixed - Example with vectorized input added in mprintf and msprintf help pages.
* Bug #6476 fixed - Matplot help did not indicate that the data field should be used to update data.
* Bug #6512 fixed - %asn function tagged as obsolete.
* Bug #6584 fixed - mfft tagged as obsolete.
* Bug #6615 fixed - ui(get|put)file did not center the file dialog on the last focused window.
* Bug #6638 fixed - The profiler output was incorrect by a factor of 1000 under Windows.
* Bug #6689 & #6690 fixed - grand now works with complexes, polynomials, booleans, integers, sparses and strings,
and can handle row vectors, matrices and hypermatrices of thoses types.
* Bug #6693 fixed - modulo did not accept polynomial inputs. Help page was not updated.
* Bug #6752 fixed - unit test scilab.tst has been split in different tests.
* Bug #6824 fixed - resize_matrix did not manage hypermatrices.
* Bug #6832 fixed - Matrices of rationals can now be transposed via the " .' " operator.
* Bug #6840 fixed - New line_style added.
* Bug #6859 fixed - xlabel and xtitle could overlapped.
* Bug #6930 fixed - Matplot handle had no rect property.
* Bug #6988 fixed - Error messages in modules/data_structures/src/c/hmops.c were not
standard.
* Bug #7026 fixed - There was no unit test for plot2d.
* Bug #7038 fixed - A toggle button now manages datatip mode.
* Bug #7040 fixed - Example and description for getMatrixOfIntegerPrecision modified in help page.
* Bug #7047 fixed - milk_drop is now obsolete. It will be removed in Scilab 5.5.1, but will be kept as a demonstration.
* Bug #7051 fixed - fieldnames help page updated.
* Bug #7080 fixed - Some graphic macros did not use standard error messages.
* Bug #7084 fixed - Old, not documented and deprecated gr_menu function removed.
* Bug #7085 fixed - 'edit' uicontrols did not support multiple line edition.
* Bug #7133 fixed - help_from_sci with no input argument now launches a full demonstration.
* Bug #7169 fixed - It was not possible to specify different option value (thickness, style, ...) for X and Y grids.
* Bug #7204 fixed - geomean applied to a hypermatrix gave wrong results.
* Bug #7205 fixed - length(H) applied to a non-string hypermat returned 3 instead of size(H,"*").
* Bug #7206 fixed - If the second input argument of meanf function was a hypermatrix,
this function returned an error.
* Bug #7244 fixed - Extraction from a struct array with a boolean vector had a strange behavior.
* Bug #7296 fixed - %nan, %inf and -%inf enabled for the cdf* functions.
* Bug #7304 fixed - exportUI did not switch filename extension when filter was changed.
* Bug #7411 fixed - clf forgot to turn off the datatip mode.
* Bug #7417 fixed - Auto-positioning of datatips did not take the curvature into account.
* Bug #7486 fixed - LAPACK versions of DGELSY and ZGELSY now used.
* Bug #7561 fixed - roots help page now explains that coefficients are used in the contrary order of poly.
* Bug #7570 fixed - The switch criterion on x and y is now explained in beta() help page.
* Bug #7585 fixed - psi.f moved from "elementary functions" to "special functions" module.
* Bug #7593 fixed - stdev now encompasses msd and st_deviation thanks to a new optional input argument.
* Bug #7596 fixed - A same error happening in different places now displays the same
error message.
* Bug #7648 fixed - CDF functions now display a warning for non integer
"degrees of freedom" argument.
* Bug #7650 fixed - isempty(tlist(...)) always returned false, even when all defined fields were empty.
* Bug #7655 fixed - An example added in type help page, for type(X)=11 and type(X)=13.
* Bug #7666 fixed - Inconsistencies between and/or and &/| fixed.
* Bug #7684 fixed - Introduction demonstration splitted into subsections.
* Bug #7705 fixed - "dimension", "minbounds" and "maxbounds" fields have been documented in Genetic algorithms help pages.
* Bug #7739 fixed - Axis position was invalid in log modes.
* Bug #7771 fixed - There was no item about arrow_size in champ_properties help page.
* Bug #7772 fixed - There was no description, no example about line_style property in polyline help page.
* Bug #7781 fixed - The second parameter of iqr function had no effect.
* Bug #7782 fixed - lcm and gcd help pages improved to tell the user how to use both
functions.
* Bug #7824 fixed - title function properties did not support an indexed color.
* Bug #7826 fixed - chart tagged as obsolete.
* Bug #7828 fixed - Slight improvements in nicholschart.
* Bug #7848 fixed - The third argument of correl function is now optional.
* Bug #7858 fixed - variance and variancef can now return the mean of the input
in a new output argument and take the a priori mean as input.
* Bug #7877 fixed - iirgroup function fixed.
* Bug #7879 fixed - string now accepts plist type, and printing a plist displays that string.
* Bug #7905 fixed - Figure icon can now be changed using dedicated property.
* Bug #7916 fixed - nansum([]) returned NaN value while this function had to ignore it.
* Bug #7927 fixed - Output "flag" in qmr function was not well documented.
* Bug #7960 fixed - plzr could not produce pole zero plot for a simple transfer function.
* Bug #7986 fixed - spec gateway renamed from sci_eig.c to sci_spec.c.
* Bug #7999 fixed - SwingScilabFileChooser.getFilterIndex() was unusable.
* Bug #8031 fixed - cdfgam error message fixed.
* Bug #8058 fixed - The user can now set the tolerances of intc function.
* Bug #8060 fixed - Improved list display in the variable browser.
* Bug #8098 fixed - cumsum could not be applied to rational matrices.
* Bug #8131 fixed - It was not possible to choose the number of marks and the line width in legends.
* Bug #8133 fixed - Ticks disappeared in planar 3-D view.
* Bug #8162 fixed - Area of stability of plzr was wrong for continuous systems
(+unit test added).
* Bug #8196 fixed - Error messages dealing with negative thickness were not standard.
* Bug #8211 fixed - Parameters module demonstration finalized.
* Bug #8231 fixed - xrect help page did not say that clipping property was inherited.
* Bug #8234 fixed - strtod did not return an empty matrix when the input argument was an
empty matrix.
* Bug #8247 fixed - regress tagged as obsolete.
* Bug #8264 fixed - Matlab to Scilab dictionary help page updated for atan2.
* Bug #8290 fixed - DELAYV_f block documentation fixed.
* Bug #8319 fixed - dbphi(hypermat) and phasemag(hypermat) returned a matrix instead of
a hypermatrix.
* Bug #8323 fixed - Scilab "About Box" did not hide Scilab main window.
* Bug #8337 fixed - mtlb_rand now uses the "uniform" rule, whatever the random rule set is.
* Bug #8373 fixed - clear can now handle a matrix of strings argument.
* Bug #8379 fixed - It was not possible to delete the selected datatip with DELETE or BACKSPACE.
* Bug #8415 fixed - optim_moga, optim_nsga, optim_nsga2 can now take list as input
arguments, as explained in their help pages.
(and others) added.
* Bug #8462 fixed - bvodeS could make Scilab unstable.
* Bug #8470 fixed - bvode displayed some output in terminal window and not in
Scilab console.
* Bug #8479 fixed - The latest Saxon version was not supported.
* Bug #8511 fixed - sprand now uses grand instead of rand and grand functions. Internal
state of the random generator is no more changed.
* Bug #8561 fixed - ddassl, ddasrt, ddaskr: abs and rel tolerance sizes are now checked.
* Bug #8597 fixed - grand/clcg4 could display uncontrolled messages as warning.
* Bug #8607 fixed - Some error messages in modules/overloading/macros were not standard
and not localized.
* Bug #8614 fixed - Unit test for barhomogenize added.
* Bug #8636 fixed - roots help page updated (default algorithm value was wrong).
* Bug #8667 fixed - The handling of %nan in min, max, median functions was not properly
documented.
* Bug #8680 fixed - "end" output argument of regexp function has been changed.
* Bug #8687 fixed - typeof function failed on uint8, depending on the format
(+ unit test added).
* Bug #8695 fixed - optim_ga used old (initial) values instead of newly-computed ones.
* Bug #8745 fixed - Extracting from an empty matrix automatically returned an empty matrix.
* Bug #8778 fixed - Call_ScilabOpen, TerminateScilab could not be called more
than 80 times in a loop.
* Bug #8779 fixed - gsort did not preserve the order of equal elements, in
lexicographic sort.
* Bug #8820 fixed - squeeze did not return a matrix when the number of dimensions
of the result was less or equal to 2.
* Bug #8824 fixed - taucs_chfact returned a segfault (not the case in nwni mode).
* Bug #8840 fixed - fileparts did not manage matrix of strings.
* Bug #8856 fixed - Non regression test added for [k,l,m,...]=find(a==5).
Non regression test of bug #476 updated.
* Bug #8857 fixed - Non regression test of bug #477 updated.
* Bug #8858 fixed - Non regression test of bug #480 updated.
* Bug #8862 fixed - mget and mput could not read and write 64 bit data from
binary files.
* Bug #8956 fixed - xpoly, xfpoly, xrect, xsegs and xarc did not update data_bounds property.
* Bug #9004 fixed - bitcmp function called with one input argument returned an error.
* Bug #9020 fixed - exists function did not accept matrix as first input argument.
* Bug #9031 fixed - Misalignment of text when using xstring with a matrix fixed.
* Bug #9033 fixed - auto_dimensioning property for text handles was not documented.
* Bug #9059 fixed - tbx_build_macros and genlib did not stop even if an error occurred.
* Bug #9109 fixed - nfreq tagged as obsolete.
* Bug #9110 fixed - Examples and references to other functions added in Statistics help pages.
* Bug #9158 fixed - zeros called with a big number returned an empty matrix instead
of an error.
* Bug #9208 fixed - Added three optional output arguments to optim,
to retrieve #iterations, #evaluations and a termination indicator.
* Bug #9309 fixed - comparison help page updated to document issue with empty matrix.
* Bug #9319 fixed - Huge polylines could not be exported in PS/EPS.
* Bug #9385 fixed - The type checking in trigonometric functions has been added.
* Bug #9394 fixed - is_param recognized "plist" as an existing field.
* Bug #9395 fixed - add_param did not check its input arguments.
* Bug #9396 fixed - add_param accepted duplicate keys.
* Bug #9444 fixed - with_embedded_jre function removed.
* Bug #9459 fixed - Default values of the optional plot3d arguments were not documented.
* Bug #9493 fixed - Title is now correctly set when starting Scilab and focus is set on Console.
* Bug #9537 fixed - optimbase_configure only allowed row vectors as initial value.
Column vectors now allowed by transposing them.
* Bug #9538 fixed - optimbase_checkshape only allowed row vectors as output arguments of
cost function. Column vectors are now allowed by transposing them.
* Bug #9577 fixed - Setting neldermead_configure("-numberofvariables") is now optional,
setting neldermead_configure("-x0") initializes -numberofvariables
implicitly.
* Bug #9601 fixed - Cylinder demonstration fixed.
* Bug #9627 fixed - Arguments checking added in optimsimplex_* functions.
* Bug #9688 fixed - optim could crash when "imp" option was < 0. It is now set to 0 in
that case.
* Bug #9690 fixed - The "imp" option for optim could crash Scilab and was not consistent
with the help page.
* Bug #9691 fixed - "imp" option in optim help page was poorly documented.
* Bug #9694 fixed - Example in optim help page fixed to display correct counters.
* Bug #9697 fixed - Displayed information for optim "qn" and "gc" with bounds and imp=1 fixed.
* Bug #9701 fixed - optim with "qn" option was failing for large problems.
* Bug #9702 fixed - Contrary to what optim help page stated, the "gc" algorithm does use
the "epsx" parameter.
* Bug #9780 fixed - gmres solver did not run with complex systems.
* Bug #9788 fixed - neldermead can now produce a warning when it fails to converge,
thanks to a new input argument "warn".
* Bug #9819 fixed - unwrap function did not exist in Scilab.
* Bug #9821 fixed - getrelativefilename did not manage matrix of strings.
* Bug #9840 fixed - Default G tolerance in lsqrsolve was too large.
* Bug #9851 fixed - Error message occurred because of a cut-off frequency of 0.25Hz
with irr.
* Bug #9859 fixed - It was not possible to draw arrows in 3-D using xarrows.
* Bug #10012 fixed - lmisolver and lmitool called with no input now produce errors.
* Bug #10083 fixed - plot3d could not be used with only one input argument.
* Bug #10122 fixed - replot could not be used in 3-D.
* Bug #10146 fixed - In SciNotes, 'help on keyword' moved from bottom to top in the popup
menu.
* Bug #10175 fixed - Clearer example added for sp2adj to adj2sp conversion (and backwards conversion).
* Bug #10180 fixed - det was not defined for sparse matrices.
* Bug #10213 fixed - sci2exp help page updated to document the impact of format function.
* Bug #10214 fixed - evstr help page updated to mention that input argument must not be composed of
continuation marks (..).
* Bug #10216 fixed - Invalid syntaxes for zeros, ones, eye, rand, like zeros(2,:).
* Bug #10221 fixed - ifftshift function did not exist in Scilab.
* Bug #10226 fixed - When a // <empty session> line was deleted, all sessions
histories were folded.
* Bug #10234 fixed - reglin function moved from CACSD to Statistics module.
* Bug #10243 fixed - fun2string(X) called X before returning its code.
* Bug #10254 fixed - Slight improvements in ones help page.
* Bug #10269 fixed - qp_solve can now take up to 5 output arguments. The last one is an
error flag, if it is present, then the function will issue a warning
instead of an error.
* Bug #10271 fixed - ordmmd now checks the consistency of the third input argument with the
input matrix defined by the first two input arguments.
* Bug #10273 fixed - spchol help page now displays an example showing how to use its output arguments.
* Bug #10276 fixed - qp_solve segfaulted with large matrices.
* Bug #10287 fixed - Error message added for complex expression as input argument of
integrate function.
* Bug #10305 fixed - Comparison of lists with empty items returned an error message.
* Bug #10391 fixed - Error when using completion after a global variable clear fixed.
* Bug #10428 fixed - Java based components of Scilab showed a library load error in CLI mode.
* Bug #10445 fixed - In SciNotes, CTRL+Drag&Drop moved text rather than copying it.
* Bug #10470 fixed - In SciNotes, split "Horizontally" or "Vertically" was meaningless.
* Bug #10596 fixed - exit(xxx) from Scilab failed.
* Bug #10621 fixed - Figure without docking/undocking capabilities can now be created.
* Bug #10645 fixed - File encoding could not be given as argument in xmlRead.
* Bug #10718 fixed - New "Resize" property added to figures.
* Bug #10805 fixed - Documentation on left bracket was superfluous and is now removed.
Refer to brackets for information on "[" and "]".
* Bug #10816 fixed - Typo in part error message fixed.
* Bug #10818 fixed - home, %e, %t, %f, %z and %s help pages added.
* Bug #10823 fixed - fullpath returned different results under Windows and Linux for
non-existent file.
* Bug #10830 fixed - Hypermatrix insertion with a negative index returned a wrong error message.
* Bug #10833 fixed - exists help page updated.
* Bug #10840 fixed - Keyboard arrows were disabled on 'slider' type uicontrols.
* Bug #10856 fixed - analpf did not return the right result.
* Bug #10862 fixed - Add a without Internet connection installation
global configuration in the installer.
* Bug #10866 fixed - det was not equivalent to detr for rational matrices.
* Bug #10906 fixed - Typo fixed in cls2dls help page.
* Bug #10930 fixed - The comments in armax function were in French.
* Bug #10932 fixed - Startup directory was not saved/restored in preferences.
* Bug #10936 fixed - Scilab hung with invalid strf in plot2d.
* Bug #10942 fixed - Function soundsec revised. Now soundsec can be used for non integer values of time.
* Bug #10995 fixed - Typo fixed in grand help page for Gamma law argument.
* Bug #10998 fixed - matrix*hypermatrix and hypermatrix*matrix operations failed.
* Bug #11001 fixed - exists and isdef did not work with primitives.
* Bug #11007, #11008 & #11009 fixed - New conjgrad function (Conjugate Gradient methods "pcg", "cgs", "bicg" and "bicgstab").
* Bug #11065 fixed - The second output argument of unique function contained a wrong result.
* Bug #11067 fixed - Display of ticks labels with closed associated values was wrong.
* Bug #11139 fixed - conj was not defined for sparse matrices (+ unit test added).
* Bug #11303 fixed - Exception while searching with multiple tabs in SciNotes fixed.
already existing in SCI/contrib/archives in "offline" mode.
* Bug #11305 fixed - Performances improved with a better way to update data in Graphics.
* Bug #11308 fixed - Calling sequences in dsearch help page were wrong.
* Bug #11343 fixed - The "isoview" figure property did not work when the axes
margins had been modified.
* Bug #11523 fixed - In SciNotes, 'whereami line numbering' was not clear enough.
* Bug #11571 fixed - x_mdialog did not let the Look&Feel select the window size.
* Bug #11575 fixed - There was no preview of GIF files in exportUI dialog.
* Bug #11576 fixed - exportUI did not propose gcf().figure_name as default file name.
* Bug #11616 fixed - Figure menubar could not be made invisible.
* Bug #11629 fixed - Interactive zoom did not work properly in datatip mode.
* Bug #11648 fixed - Copying graphic via the clipboard did not work.
* Bug #11680 fixed - GUI functions in Scilab 5.4.X were much slower than in Scilab 5.3.3.
* Bug #11714 fixed - help_from_sci sometimes failed when input function had "<imagedata>" comments.
* Bug #11766 fixed - nthroot has been added to m2sci help page.
* Bug #11779 fixed - Wrong variable type in the documentation of getNbInputArgument and getNbOutputArgument fixed.
* Bug #11789 fixed - Documentation was missing for nbInputArgument.
* Bug #11792 fixed - Lists can be accessed with non integer indexes (list help page
updated).
* Bug #11814 fixed - Typo in CACSD help chapter fixed.
* Bug #11869 fixed - "Environment" was not localized in preferences.
* Bug #11876 fixed - ilib_include_flag now returns a string when called with a string column vector as input.
* Bug #11885 fixed - Each rand has been changed to grand in genetic algorithms and
simulated annealing functions.
* Bug #11891 fixed - Fisher ratio could be inaccurate for one-way ANOVA.
* Bug #11953 fixed - Scilab crashed when global("") was typed.
* Bug #11964 fixed - uicontrol coordinates system did not take figure resize into account.
* Bug #11996 fixed - eye extended to hypermatrix.
* Bug #11997 fixed - In case of invalid variable name, save function now returns an error
instead of a compatibility warning.
* Bug #12012 fixed - Misleading perl function should not be part of Scilab (tagged as obsolete).
* Bug #12034 fixed - max function did not manage empty matrices.
* Bug #12037 fixed - Simplified Chinese version of SciNotes displayed warnings at startup.
* Bug #12045 fixed - repmat returned wrong results if the values of an input matrix were
not double.
* Bug #12070 fixed - Removing a module can now be done in an on-line mode even if
it has been installed in an off-line mode.
* Bug #12073 fixed - Width of code examples has been decreased in XML help pages.
* Bug #12080 fixed - lsqrsolve always printed messages.
* Bug #12082 fixed - convstr function did not work with non-ASCII symbols.
* Bug #12085 fixed - Under Windows, csvWrite wrote wrong EOL.
* Bug #12114 fixed - libstdc++ is now compiled as static instead of using the
library from thirdparty.
* Bug #12118 fixed - ode could take complex externals.
* Bug #12121 fixed - inv function did not work for complex sparse matrices.
* Bug #12130 fixed - flipdim can now flip blocks, thus making jmat obsolete.
* Bug #12143 fixed - "stop entity picker" (ged(11)) returned an error message.
* Bug #12145 fixed - demo_mdialog internal function removed.
* Bug #12150 fixed - datatipCreate failed with one single point.
* Bug #12156 fixed - Closing a Scilab session in Javasci could led to a HDF5 error message.
* Bug #12163 fixed - unzoom did not work with a single input argument.
* Bug #12170 fixed - Calling matfile_listvar on an empty file returned an error.
* Bug #12212 fixed - Export of a polyline in 2-D broke it into several segments.
* Bug #12306 fixed - Invalid memory free on completion in NWNI mode fixed.
* Bug #12308 fixed - create_palette help page removed (function removed).
* Bug #12326 fixed - There was no way to set LaTeX font size in preview.
* Bug #12334 fixed - Mark color in legend was invalid.
* Bug #12349 fixed - In SciNotes, when the view was splitted, removing a char made the
other view jump.
* Bug #12376 fixed - Exec & edit buttons in the help pages examples were sometimes
misplaced.
* Bug #12412 fixed - Typo fixed in some error messages.
* Bug #12413 fixed - ATOMS packages could not be removed if ATOMS had never been on-line.
* Bug #12415 fixed - PATH environment variable grew when using call_scilab in a loop.
* Bug #12426 fixed - By using addErrorMessage, a random string error could be displayed.
* Bug #12433 fixed - show_pixmap function was removed from Scilab but still used in some
functions.
* Bug #12439 fixed - edit_error returned a wrong message when there was no recorded error.
* Bug #12440 fixed - Unitary test added for bitxor.
* Bug #12443 fixed - The behavior of mopen in text file mode has been documented
under Windows.
* Bug #12463 fixed - Wrong specification for rect=[x,y,w,h] argument in xstringb
French help page.
* Bug #12465 fixed - ATOMS Default categories names were not localized.
* Bug #12470 fixed - Variable browser was not refreshed after loading an environment.
* Bug #12472 fixed - grand and link error messages fixed.
* Bug #12473 fixed - Problems with "é" in mkdir French help page.
* Bug #12475 fixed - csvRead did not support double quoted fields.
* Bug #12481 fixed - xlabel could not be used with Scilab property names.
* Bug #12485 fixed - xchange returned bad values with log scale.
* Bug #12490 fixed - plot did not call clf; in its help page example producing a
wrong behavior.
* Bug #12492 fixed - Exported EPS files were invalid when dash patterns were too long.
* Bug #12496 fixed - zoom_rect could led to a crash in log scale.
* Bug #12506 fixed - In SciNotes, a miscolorization could occurred when returned values
list was broken.
* Bug #12508 fixed - Wrong error message in rand function fixed.
* Bug #12518 fixed - Polynoms were not displayed by default in the variable browser.
and a new function bode_asymp() to draw the system asymptotes.
* Bug #12520 fixed - Improve the description of the size in the variable browser.
* Bug #12527 fixed - Scilab user functions were not listed in the variable browser.
* Bug #12535 fixed - In a French localized Scilab, comma was used as decimal separator when zooming (rather than point).
* Bug #12547 fixed - In SciNotes, lines were wrongly numbered with splitted function
declarations.
* Bug #12548 fixed - Duplicated code in xmltoformat removed.
* Bug #12550 fixed - optimbase and optimsimplex help pages were not standard.
* Bug #12551 fixed - Stack problem with diary([],"pause") and diary([],"resume") fixed.
* Bug #12556 fixed - A fatal error occurred when calling set with wrong instructions.
* Bug #12557 fixed - Valid function names were not specified in function and functions
help pages.
* Bug #12564 fixed - Compile and run javasci help page was not clear about needed packages.
* Bug #12567 fixed - Error messages fixed in ricc.
* Bug #12581 fixed - isfield could not support mlist or tlist.
* Bug #12589 fixed - Call sequence for spzeros & spones were missing in French
help pages.
* Bug #12592 fixed - Scilab hung with plot(-0).
* Bug #12593 fixed - A wrong error message was returned when running genlib with an
error in the sci file.
* Bug #12594 fixed - Invalid SciNotes configuration file avoided SciNotes startup.
* Bug #12600 fixed - mput did not manage unsigned integer.
* Bug #12606 fixed - Overloads for grand were not standard.
* Bug #12613 fixed - gsort did not return correct results with %nan.
* Bug #12614 fixed - Helpbrowser was not launched in EDT.
* Bug #12615 fixed - Graphics seemed to be freezed after a call to plot/bar/barh with
a bad LineSpec argument.
* Bug #12622 fixed - Various typos fixed in error messages.
* Bug #12624 fixed - In case of errors in Scilab macros, "make check-TESTS" did not fail
as expected.
* Bug #12627 fixed - At restoration, a window could be out of the screen.
* Bug #12629 fixed - The last example of csim help page defined a function called
input (overwriting the Scilab one).
* Bug #12631 fixed - A "see also" link has been added from progressionbar to waitbar
and vice versa.
* Bug #12634 fixed - ATOMS modules could not be installed from an archive file
already existing in SCI/contrib/archives in "offline" mode.
* Bug #12637 fixed - In some help pages, some signal processing functions were not in
the correct section.
* Bug #12639 fixed - justify([], position) returned an error instead of [].
* Bug #12641 fixed - graypolarplot has been fully vectorized as it was too slow.
* Bug #12657 fixed - Computation of v1.^v2 is now done without any memory allocation,
when v1 and v2 are real arrays, v1 >= 0 and v2 integer.
* Bug #12668 fixed - Undocking SciNotes led to an exception.
* Bug #12672 fixed - Ticks part of axes_property help page updated.
* Bug #12673 fixed - Ticks were drawn outside of axes area.
* Bug #12678 fixed - nthroot now accepts vector/matrix as second argument.
* Bug #12679 fixed - Argument type check added in gcd and lcm.
* Bug #12682 fixed - Key events were disabled after zooming.
* Bug #12683 fixed - proc_name(k, gwin) callback was badly managed depending on
input arguments of addmenu function.
* Bug #12686 fixed - Error returned by diff fixed.
* Bug #12702 fixed - When no extra parameters were needed in the cost function,
NDcost did not work.
* Bug #12703 fixed - In SciNotes, common shortcuts 'SHIFT DELETE', 'SHIFT INSERT'
(and others) added.
* Bug #12705 fixed - members function added. It allows to find the number of occurrences
and linear indexes for common values between two matrices of the
* Bug #12706 fixed - A wrong size of a matrix as input argument of cross function was
not detected.
* Bug #12708 fixed - Incorrect display in SciNotes preferences fixed (onmouseover styles).
* Bug #12712 fixed - In SciNotes, autosaving can now use %date to append the current
date to the backup filename.
* Bug #12714 fixed - csvDefault("decimal", ",") returned %f while this value was valid.
* Bug #12715 fixed - Variable cross in pspect and cspect has been renamed because of
conflicts with cross function.
* Bug #12716 fixed - In SciNotes, RTL languages were not correctly displayed.
* Bug #12725 fixed - Datatips did not work in logarithmic scale.
* Bug #12733 fixed - There was no way to direct graphs to nothing with driver function.
* Bug #12736 fixed - In SciNotes, the Completion window appeared only in first tab.
* Bug #12737 fixed - In SciNotes, autosave did not create directory if it did not exist.
* Bug #12747 fixed - legendre now accepts the -1 and 1 values for third argument.
* Bug #12749 fixed - fscanfMat help page updated.
* Bug #12758 fixed - Focus issue with plot3d fixed.
* Bug #12761 fixed - The https:// protocol was not supported on ATOMS.
* Bug #12763 fixed - Value of "listbox" style uicontrols was not updated when using arrow keys.
* Bug #12769 fixed - xset("window", 1) did not set the current axes.
* Bug #12772 fixed - eigs failed when trying to solve a sparse matrix eigen value problem.
* Bug #12774 fixed - Various typos fixed.
* Bug #12775 fixed - Some related functions were not listed in "See also" section of
routh_t help page.
* Bug #12778 fixed - Insertion of an empty matrix in an integer matrix led to a
wrong result.
* Bug #12779 fixed - savewave had a miscoding in the internal function write_wavedat.
* Bug #12783 fixed - There were some inconsistent error messages in dsearch.
* Bug #12784 fixed - Misleading error message in many functions when passing an integer
argument instead of double argument fixed.
* Bug #12785 fixed - plot did not allow int data as first argument.
* Bug #12790 fixed - Links to ZCOS files in documentation were broken.
* Bug #12791 fixed - More information is now given in case of failure during the ATOMS
autoload step.
* Bug #12793 fixed - Improved the bode() plots with a new option "rad" to convert plot into rad/s
and a new function bode_asymp() to draw the system asymptotes.
* Bug #12794 fixed - calfrq.sci code did not follow Scilab standard.
* Bug #12795 fixed - Typos fixed in CACSD help page.
* Bug #12800 fixed - Typo fixed in Polynomials help page.
* Bug #12803 fixed - warning(['foo','bar']) printed two 'WARNING: '.
* Bug #12804 fixed - Typos fixed in routh_t help page.
* Bug #12807 fixed - Display of showprofile improved.
* Bug #12808 fixed - Add missing </td> in documentation generation (note, warning, ...).
* Bug #12813 fixed - flipdim function extended to any type of input data.
* Bug #12814 fixed - Improvements of pertrans help page.
* Bug #12815 fixed - levin redefined cov as a variable.
menu.
* Bug #12816 fixed - Numbers pasted in editvar were not parsed according to locale.
* Bug #12818 fixed - Segfault in set function with invalid property values dimension.
* Bug #12819 fixed - Link to contributors website page fixed in the documentation.
* Bug #12823 fixed - In help generation (toolbox) links were not correctly handled.
* Bug #12826 fixed - <warning> and <note> tags were not managed in the documentation.
* Bug #12827 fixed - noisegen help page improved.
* Bug #12828 fixed - routh_t gave a wrong result if the first element of a row was zero.
* Bug #12829 fixed - New optional output argument added for routh_t function.
* Bug #12830 fixed - In SciNotes, it was not possible to execute a replace action
from the caret position.
* Bug #12831 fixed - In SciNotes toolbar, there was no button to open code navigator.
* Bug #12833 fixed - In SciNotes, there was no autoscroll when searching a pattern.
* Bug #12836 fixed - Error fixed in strcmpi help page.
* Bug #12839 fixed - Typo fixed in getVariablesOnStack help page.
* Bug #12840 fixed - Typo fixed in number_properties.xml help page.
* Bug #12852 fixed - Visual Studio 2012 SDK configuration was incorrect.
* Bug #12854 fixed - configure failed to detect custom installation of docbook.
* Bug #12858 fixed - Typo fixed in debug and pause French help pages.
* Bug #12859 fixed - Fixed optional argument in isdef help page.
* Bug #12860 fixed - Missing semicolon in style.css added.
* Bug #12863 fixed - size(state-space, "r") returned an error.
* Bug #12875 fixed - phasemag returned an error for input vector containing zeros.
* Bug #12880 fixed - A warning is displayed when transposing arguments of plot.
* Bug #12882 fixed - Some help pages were not clear.
* Bug #12887 fixed - Scilab hung with auto_clear set to on and log_flags set to true.
* Bug #12888 fixed - sysdiag was not documented about block diagonal matrices build.
* Bug #12896 fixed - Typos fixed in XML module error messages.
* Bug #12900 fixed - It is now possible to set proxy options in Preferences.
* Bug #12906 fixed - champ and champ1 help pages updated
* Bug #12909 fixed - Completion on (mt)list led to a crash.
* Bug #12910 fixed - Typos fixed in several help pages.
* Bug #12911 fixed - Matlab to Scilab dictionary help page updated for eig.
* Bug #12913 fixed - linspace returned an error if the third argument was an integer type
variable.
* Bug #12916 fixed - power help page improved.
* Bug #12919 fixed - Rotation on plots was disabled after using menus.
* Bug #12927 fixed - ones function could not take integer type input.
* Bug #12931 fixed - ATOMS redefined "message" keyword.
* Bug #12938 fixed - No Java compiler was available in Linux binary version.
* Bug #12943 fixed - Datatips did not work properly when 2-D plots were rotated.
* Bug #12945 fixed - Datatips could not be dragged properly in zoomed axes.
* Bug #12948 fixed - When host was not found, getURL caused a crash to desktop.
* Bug #12950 fixed - getURL ignored the proxy settings under Windows.
* Bug #12951 fixed - Interactive zoom was broken.
* Bug #12952 fixed - It was not always possible to search a word in a file with SciNotes.
* Bug #12956 fixed - splitURL with no protocol in URL provoked an access
violation exception.
* Bug #12957 fixed - splitURL and getURL were not declared as new 5.5 functions.
* Bug #12962 fixed - xinfo documentation was not clear.
* Bug #12963 fixed - drawaxis did not place the axis properly.
* Bug #12966 fixed - Rotation, tool tip and other Xcos plot actions were
disabled by default.
* Bug #12967 fixed - Data editor icon was not 16x16.
* Bug #12968 fixed - A variable named 'temp' could not be saved.
* Bug #12971 fixed - getURL downloaded file name was wrong.
* Bug #12973 fixed - Exception occurring when clicking on a figure at creation fixed.
* Bug #12976 fixed - getURL returned a file name instead of a file path.
* Bug #12978 fixed - exportUI returned an error when input argument was a figure handle.
* Bug #12979 fixed - exportUI did not work with vectorial export.
* Bug #12990 fixed - GED features conflicted with figure events.
* Bug #12992 fixed - The sigma value was always equal to "LM" in eigs.
* Bug #12993 fixed - stdev returned value depended on 'x' being defined in the environment.
* Bug #13000 fixed - []./int8(3) and on int8(3)./[] led to an endless recursive.
* Bug #13002 fixed - modulo and pmodulo did not support integers & hypermatrices.
* Bug #13003 fixed - String to enum converter added to Java external objects.
* Bug #13004 fixed - Debug infos were displayed in case of an error with eoj.
* Bug #13005 fixed - jcompile did not use the classpath to compile.
* Bug #13007 fixed - Compilation errors were not returned by jcompile.
* Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
* Bug #13010 fixed - Wrong class was returned by jcompile (with ecj).
* Bug #13011 fixed - ilib_compile failed under Mac OS X 10.9.
* Bug #13012 fixed - Vectorial export of rotated strings was wrong.
* Bug #13013 fixed - In SciNotes, the first proposed directory to save a file was not current working directory.
* Bug #13014 fixed - Update of the efficiency inner variable improved in optim_ga.
* Bug #13015 fixed - Computation of efficiency inner variable improved in optim_ga.
* Bug #13022 fixed - Vectorial export did not clip large segments.
* Bug #13023 fixed - xs2pdf crashed under Windows when the target file was already opened.
(and others) added.
* Bug #13027 fixed - There was no autowrap into array in JIMS.
* Bug #13031 fixed - Lorentz Butterfly demonstration fixed.
* Bug #13032 fixed - CMATVIEW help page example fixed and CMAT3D help page example created.
* Bug #13033 fixed - -1 could not be used as nax argument in plot2d.
* Bug #13036 fixed - The help page associated to the history browser was wrong.
* Bug #13041 fixed - Wrong result was returned for "integer scalar" minus "integer vector".
* Bug #13042 fixed - Texts in graphics were not properly centered.
* Bug #13047 fixed - jcompile did not allow class reloading.
* Bug #13049 fixed - New handled protocols added in links in SciNotes.
* Bug #13050 fixed - The result of mvvacov was not symmetric.
* Bug #13051 fixed - SciNotes restoration could block desktop one.
* Bug #13053 fixed - datatipCreate did not return datatip handle.
* Bug #13055 fixed - Array indexing did not follow Scilab convention in JIMS.
* Bug #13061 fixed - hdf5 demonstration failed with a read-only file.
* Bug #13063 fixed - Color selection in SciNotes preferences threw exceptions.
* Bug #13064 fixed - Deleting a link connected to a split led to a translated link.
* Bug #13066 fixed - data_bounds was not fully documented in axes_properties.
* Bug #13069 fixed - Documentation for %MODELICA_USER_LIBS updated.
* Bug #13080 fixed - Contextual menu was unavailable for datatips management.
* Bug #13082 fixed - Datatip mark style was not inherited from the parent polyline.
* Bug #13083 fixed - Datatip marks did not inherit colors from the parent polyline.
* Bug #13084 fixed - interp_mode property could not be set on all datatips of the same polyline.
* Bug #13085 fixed - A datatip could not be moved on a circle.
* Bug #13092 fixed - Optimizations now check the user function output (must be real).
* Bug #13093 fixed - Removed trailing "\n" in the head_comments error message.
* Bug #13101 fixed - When x-axis was in reverse position x_location='origin' failed.
* Bug #13102 fixed - savematfile did not support "-v7.3" option.
* Bug #13108 fixed - Time between ATOMS database updates is now a month (was a day) and is configurable.
* Bug #13109 fixed - pol2str now supports polynomials with complex coefficients and hypermatrices.
* Bug #13111 fixed - sqrt returned different results when imaginary part was -0 versus 0.
* Bug #13114 fixed - clear_pixmap/pixmap property should have been removed in Scilab 5.4.1.
* Bug #13116 fixed - qpsolve now respects upper-bounds constraints.
* Bug #13119 fixed - mget and mgetl now return an error when called with decimal values as number of lines.
* Bug #13121 fixed - ode "rk" option crashed Scilab when the user derivative function failed.
* Bug #13127 fixed - There were no subticks with user defined ticks.
* Bug #13132 fixed - There were missing graduations when data_bounds interval was too small.
* Bug #13134 fixed - User-defined ticks in log scale were invisible.
* Bug #13136 fixed - exists and isdef failed for input arguments longer than 1.
* Bug #13139 fixed - fft help page fixed.
* Bug #13140 fixed - Various typos fixed in help pages.
* Bug #13144 fixed - csvRead can now ignore header comments thanks to a new input argument.
* Bug #13146 fixed - profile failed when a comment was on the same line as a function declaration.
* Bug #13150 fixed - Vectorial export used too much memory for grayplot.
* Bug #13152 fixed - Typo fixed in syslin French help page.
* Bug #13164 fixed - Miscolorization in SciNotes colors preferences fixed.
* Bug #13165 fixed - Preferences reset did not show a confirmation pop-up.
* Bug #13168 fixed - Wrong interpretation of star followed by minus fixed.
* Bug #13170 fixed - Legends for plzr plots fixed.
* Bug #13174 fixed - Scilab crashed after XML element removal.
* Bug #13175 fixed - argn help page updated with specific cases.
* Bug #13177 fixed - Error when changing x_ticks.locations on axes fixed.
* Bug #13185 fixed - When the "checked" option of a uimenu was set to "on" for
the first time, the display order of other uimenus was changed.
* Bug #13186 fixed - csvRead freezed Scilab if separator was an empty string.
* Bug #13187 fixed - xmltoformat did not include "imageobjects" in output.
* Bug #13188 fixed - The output argument of eomday function was not pre-dimensioned.
* Bug #13191 fixed - isempty(rational) returned an error message.
* Bug #13192 fixed - horner returned an error message when the input arguments did not have the same size.
* Bug #13194 fixed - part help page improved.
* Bug #13199 fixed - There was a thin blue line around acknowledgements button in about box.
* Bug #13200 fixed - about() ACKNOWLEDGEMENTS did not render utf-8 characters.
* Bug #13201 fixed - x_mdialog entries had no margin.
* Bug #13202 fixed - kernel help page improved.
* Bug #13203 fixed - Typos fixed in some error messages.
* Bug #13205 fixed - group accepted continuous transfer functions.
* Bug #13208 fixed - New nanreglin function to handle NaNs for reglin().
* Bug #13210 fixed - Incorrect argument description in mseek help page.
* Bug #13213 fixed - User-defined margins were reset by auto computation of the margins.
* Bug #13215 fixed - clf(1001) returned an error.
* Bug #13218 fixed - Typos fixed in core module help pages.
* Bug #13226 fixed - Completion with accented chars could led to a crash.
* Bug #13227 fixed - Invalid windowsConfiguration.xml file could avoid Scilab startup.
* Bug #13233 fixed - Wrong simulation result of step response csim('step',t,H) fixed.
* Bug #13234 fixed - lmitool calling sequence clarified.
* Bug #13236 fixed - "parents" help page has been renamed to "parentheses".
* Bug #13238 fixed - Wrong legends display fixed.
* Bug #13243 fixed - optim with "gc" option failed when imp<0.
* Bug #13247 fixed - Hypermatrix in structure definition did not work properly.
* Bug #13252 fixed - Minor typos fixed in Graphics messages.
* Bug #13258 fixed - Bad number display in datatips fixed.
* Bug #13267 fixed - Implicit typecasts in scicos.c fixed.
* Bug #13271 fixed - plot2d with logarithmic scale and %nan value froze Scilab.
* Bug #13272 fixed - Error occurring when reading CSV files with comment option on a CSV file without comment fixed.
* Bug #13280 fixed - Axes were not always displayed properly after figure resize.
Xcos Bug Fixes
===============
* Bug #7350 fixed - The I/O ports numbering of a superblock was not updated
when a new port was dropped.
* Bug #8570 fixed - "Region to superblock" has been renamed to
"Selection to superblock".
* Bug #9995 fixed - LOGICAL_OP drew the parameters over the block.
* Bug #11518 fixed - CLR block-text was displayed out of the bounding box
when zooming.
* Bug #11776 fixed - CMSCOPE did not take into account label&Id parameter.
* Bug #11975 fixed - Inverted Pendulum demonstration did not compile.
* Bug #12359 fixed - Xcos files have been converted to ZCOS to gain some space.
* Bug #12384 fixed - Using a Modelica part linked with an explicit link to
another Modelica part led to an algebraic loop error.
* Bug #12387 fixed - The "Modelica initialize" setup menu option did not blur
during simulation.
* Bug #12414 fixed - SWITCH_m block had different behaviors
for different types of inputs.
* Bug #12423 fixed - Data types of SWITCH2_m were not documented.
* Bug #12424 fixed - Calling lincos on a derivative block made Scilab crash.
* Bug #12449 fixed - QUANT_f was not rounding/truncating/flooring/ceiling properly input signal.
* Bug #12460 fixed - xcosPalGenerateAllIcons sometimes crashed Scilab.
* Bug #12461 fixed - Cancelling zoom out by zooming in did not fully work.
* Bug #12561 fixed - SELECT_m and RELAY_f did not behave as expected.
* Bug #12568 fixed - "Recent files" menu entry is now below the "Open" one.
* Bug #12590 fixed - Block shape style was removed on file loading.
* Bug #12603 fixed - ZCOS files could contain blocks with modified (eg. invalid)
parameters.
* Bug #12619 fixed - DLR discrete block did not display LaTeX formula
like CLR continuous block.
* Bug #12651 fixed - The 'nw' scicos_simulate option did not work while
passing a previous Info simulation status.
* Bug #12664 fixed - Inverted pendulum French localization in the Xcos demonstrations was
inaccurate.
* Bug #12667 fixed - 'Recent Files' menu was not localized.
* Bug #12685 fixed - The lincos and steadycos functions did not load
the XcosLibs so all the blocks were unknown.
* Bug #12731 fixed - Code generation produced erroneous block.
* Bug #12732 fixed - Improper Copyright comments in the files were generated by the code
generation tool.
* Bug #12796 fixed - There was some mismatches between implicit
and explicit ports of superblocks.
* Bug #12797 fixed - I/O blocks generated by "Selection to Superblocks" had
wrong size.
* Bug #12868 fixed - There were several problems with PULSE_SC block.
* Bug #12869 fixed - min and max were not defined but used in Xcos generated code.
* Bug #12873 fixed - scicos_flat produced an unexpected error after a diagram
load.
* Bug #12874 fixed - CSCOPE marks sizes were too small.
* Bug #12877 fixed - Incorrect output port dimensions and types in GENSIN_f, GENSQR_f,
STEP_FUNCTION and STEP blocks fixed.
* Bug #12924 fixed - Blocks type 2004 was not handled as a valid block type.
* Bug #12934 fixed - Separate compilation of a superblock could fail due to under
determined signal sizes.
* Bug #12998 fixed - 'ans' was not ignored in the context results.
* Bug #13006 fixed - Selection to superblock (in_f and out_f) failed.
* Bug #13030 fixed - Selection to superblock did not reset the origin.
* Bug #13059 fixed - NaN propagated at startup made the simulation fail.
* Bug #13071 fixed - Three unused functions in Xcos macros now specified as not mandatory
to write new blocks.
* Bug #13172 fixed - Logic block help file had some typo errors.
* Bug #13239 fixed - Grid was not shown in zoomed log scale.
* Bug #13250 fixed - CLSS wrongly handled scalar values.
Changes between version 5.5.0-beta-1 and 5.5.0
==============================================
GUI Refactoring and Improvements
================================
* New uicontrols styles:
- tab: component which enables the user to switch between sets of uicontrols by
clicking on a tab.
The children components are "frame" uicontrols.
Two dedicated properties have been added to configure this component:
- title_position: Position of the tabs
- title_scroll: Indicates if tabs must all be displayed at a time or
managed with scroll features.
- layer: Component which enables the user to make parts of a GUI visible/invisible
programmatically.
- spinner: Component which enables the user to select/edit a value between bounds
with a fixed step.
* New uicontrols properties:
- border: Used to set some decoration properties on "frame" uicontrols.
These decorations can be created and initialized with the createBorder
and the createBorderFont functions.
- scrollable: Used to add scrolling capabilities on "frame" uicontrols.
- groupname: Used to group "radiobutton" and "checkbox" uicontrols for an easier
management.
- icon: Add an icon to "pushbutton", "text" and "frame" uicontrols.
- margin: Empty space around uicontrols.
* New uimenu properties:
- icon: add an icon on the left of the menu label.
* "listbox" and "popupmenu" style uicontrols can now manage colors selection, icons, background
and foreground colors when the "String" property is set to a matrix matching the format:
["#color1", "Item1", "#background1", "#foreground1"; "#color2", "Item2", ..., ...]
["icon1", "Item1", "#background1", "#foreground1"; "icon2", "Item2", ..., ...]
with "#color1", "#background1" and "#foreground1" in HTML format #XXXXXX.
Then the component will display a colored box or icon on the left of the associated string,
and different background/foreground colors for items.
* New management of uicontrols positioning:
In previous versions, uicontrols position was managed in an absolute way through
their "Position" property and the "Resizefcn" property of their parent figure.
Using the new layout management in figures and "frame" style uicontrols, position
is now managed in an automatic way based on Java layouts.
New dedicated properties have been added in figure and uicontrols:
- layout: layout type.
- layout_options: configuration of the layout.
Options can be initialized with the createLayoutOptions function.
Type "help layouts" in Scilab for more information about available types and options.
Uicontrols position is then managed through the "constraints" property.
A new createConstraints function has been added to managed these contraints.
* New figures properties:
- icon: Allows to customize the figure icon.
- menubar: allows to create windows without any menu bar (default menus will not be created).
- menubar_visible: Manages menu bar visibility.
- toolbar: Allows to create windows without any toolbar.
- toolbar_visible: Manages toolbar visibility.
- infobar_visible: Manages infobar visibility.
- resize: Allows to lock window size.
- dockable: Allows to create dockable/standard figures.
- default_axes: Allows to manage default axes creation in figures.
* The figure "visible" property management has evolved and offers new possibilities:
- When the figure is docked, this property manages the visibility
of components inside the figure (uicontrols, axes, ...).
In previous releases, this same property setting only managed axes.
- When the figure is not docked, this property manages the visibility
of the whole figure including its decorations.
* New way to create GUI using XML files:
- Created GUI using the figure/uicontrol/uimenu functions can now be saved in
this new format using saveGui function.
- XML files in this format can be loaded in Scilab using the loadGui function.
This function aims at creating GUI in a more efficient way.
* New rendering for GUI/uicontrols:
In this version, uicontrols use the defaults of the OS Look & Feel.
Some properties default values are not set by Scilab and then can be different from an
OS to another.
To come back to the previous and deprecated behavior, you can use the related
property on the "Console" handle:
set(get(0), "UseDeprecatedSkin", "on");
Note that this deprecated behavior will be removed in future versions.
* New way to access uicontrols using a path containing their "Tag" and their parent(s) "Tag" property.
See the set and get functions help page for more details.
* New display for uicontrols handles properties. Only properties used for Java rendering are displayed.
To display all available properties, use the "ShowHiddenProperties" "Console" property.
Graphics Evolutions
===================
* set function prototype has been modified to allow the user to set multiple
properties at once: set(h, "Property1", Value1, "Property2", Value2, ...)
* newaxes function now allows to create axes in "frame" uicontrols.
* clf function now also works with "frame" uicontrols.
* New axes properties:
- ticks_format: Format of the ticks labels.
- ticks_st: Scales and translates factors applied to ticks position when formatting
the ticks labels.
- auto_margins: Activated by default, this property lets Scilab compute margins
needed to display axes decorations (titles, labels, ...).
- grid_thickness: Thickness of the grid plotting.
- grid_style: Style of the grid plotting.
- label_font_style: Font style used to draw the labels.
* New legends properties:
- line_width: Width of the drawn line.
- mark_count: Number of the drawn marks.
* New polyline properties:
- mark_offset: Offset before the first mark.
- mark_stride: Step between consecutive marks.
- display_function: Name of the function used to customize the information
displayed in all the datatips of this polyline.
This function can be overloaded by setting a display
function on each datatip handle.
- display_function_data: Additional data needed for datatips display function.
- datatips: Handles of the datatips of the polyline.
* New Matplot property added :
- rect: specifies the rectangle where the Matplot will be drawn.
* Datatips properties have been renamed for better readability:
- tip_data --> data
- tip_box_mode --> box_mode
- tip_label_mode --> label_mode
- tip_orientation --> orientation
- tip_3component --> z_component
- tip_auto_orientation --> auto_orientation
- tip_interp_mode --> interp_mode
- tip_disp_function --> display_function
Scilab
======
* New functions introduced:
- jcreatejar - Creates a Java archive (JAR) from a set of files / directories
- ilib_build_jar - Builds Java packages from sources into a JAR file
- ifftshift - Inverses FFT shift
- unwrap - Unwraps/unfolds a Y(x) profile
- getPreferencesValue/setPreferencesValue - Get or set values in the preferences file.
- htmlDump/htmlRead/htmlReadStr/htmlWrite - Read and write data from/in HTML files.
- numderivative - Approximate derivatives of a function (Jacobian or Hessian).
* modulo and pmodulo now support integers & hypermatrices (See bug #13002).
* test_run can now separate 32-bit systems from 64-bit ones.
* pol2str: now handles polynomials with complex coefficients and hypermatrices (See bug #13109).
* nanreglin: reglin with arguments containing NaNs (See bug #13208).
* New optional input argument added to matfile2sci (append or write the output file).
Xcos
====
* xcos_debug_gui function added for a simple use of the Debug block.
* tbx_build_pal_loader function added to ease external module creation (See SEP #120).
* Event management demonstrations added.
* API change: In scicos_block4.h, "Residute" renamed to "Jacobian".
Obsolete & Removed Functions
============================
* relocate_handle tagged as obsolete. Will be removed in Scilab 5.5.1.
* msd and st_deviation tagged as obsolete (See bug #7593). Will be removed in Scilab 5.5.1.
Please use stdev instead.
* pcg tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use conjgrad instead.
* milk_drop tagged as obsolete. Will be removed in Scilab 5.5.1.
* datatipGetStruct tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use 'datatips' property instead.
* regress tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use reglin instead.
* %asn tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use delip instead.
* jmat tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use flipdim instead.
* perl tagged as obsolete. Will be removed in Scilab 6.0.0.
* numdiff and derivative tagged as obsolete. Will be removed in Scilab 6.0.0.
Please use numderivative instead.
* xmltochm tagged as obsolete. Will be removed in Scilab 5.5.1.
* clear_pixmap removed, please use drawlater/drawnow instead.
* pixmap property removed for figures, please use drawlater/drawnow instead.
* demo_message and demo_mdialog removed.
* with_embedded_jre removed.
* draw removed.
* fit_dat removed. Please use datafit instead.
* winclose removed. Please use close instead.
* datatipInitStruct and datatipRedraw removed.
* getfont, getmark, getlinestyle and getsymbol removed. Please use ged instead.
Compilation
============
* Minimal version of JoGL (2.1.4) enforced.
* Minimal version of JLaTeXMath (1.0.3) enforced.
* New dependencies to manage EMF export:
- freehep-graphics2d.jar
- freehep-graphicsio-emf.jar
- freehep-graphicsio.jar
- freehep-io.jar
- freehep-util.jar
Note: --without-emf can be used to disable this feature.
Known incompatibilities
========================
* Using => or =< now returns an error. See bug #2345.
* or/and functions now fix reals value before working on them. See bug #7666.
* a*b*-c+d is now interpreted as (a*b*(-c))+d instead of a*b*(-c+d). See bug #13168.
* Extracting children from an empty matrix of handles now returns an error.
For example: f=gcf(); f.children(1).children.children returns an error.
* Figure anti_aliasing property behavior changed:
- "off": No anti-aliasing activated on the figure.
- "2x", "4x", "8x", "16x": anti-aliasing activation will have no effect on most plateforms.
Scilab Bug Fixes
================
* Bug #1253 fixed - There was no possibility to draw only few marks on a polyline which
contained a lot of points.
* Bug #1751 fixed - Margins were not computed according to contents.
* Bug #2067 fixed - Scilab crashed when plot was called with a large numerical value.
* Bug #2345 fixed - Use of operators => and =< did not lead to an error.
* Bug #2802 fixed - convstr did not convert non ascii chars.
* Bug #4083 fixed - The numdiff and derivative functions were duplicates and are
now tagged as obsolete and replaced by numderivative. See SEP #130.
* Bug #4177 fixed - find function moved to the "elementary_functions" module.
* Bug #4401 fixed - isnum did not recognize all constants or some complex numbers.
* Bug #4490 fixed - Input argument of sinc function moved to rad.
* Bug #4649 fixed - License issue in xs2ppm help page fixed.
* Bug #4677 fixed - xclick did not return correct mouse position on keyboard event.
* Bug #4692 fixed - Export did not work while xgetmouse was waiting.
* Bug #4858 fixed - libintl.h was missing in binary versions but included in localization.h.
* Bug #4965 fixed - Setting links property for a handle of type legend did not work.
* Bug #5016 fixed - condestsp could return different results when repeated calls were performed.
* Bug #5232 fixed - 'frame' uicontrols children now follow the frame displacement.
* Bug #5826 fixed - Graphic windows did not redirect key events in console.
* Bug #5844 fixed - grayplot did not have a logflag option.
* Bug #5886 fixed - There was no property labels_font_style on axis.
* Bug #6191 fixed - It was not possible to set thickness and line_style properties for a grid.
* Bug #6305 fixed - dsearch function did not work with integers, strings and hypermatrices.
* Bug #6306 fixed - It is now possible to compute an histogram instead of plotting it
with new function histc(). Besides, histplot can now return the computed data.
* Bug #6363 fixed - It was not possible to create figures without menubar/toolbar.
* Bug #6404 fixed - xrects help page was not clear about argument specification.
* Bug #6476 fixed - Matplot help did not indicate that the data field should be used to update data.
* Bug #6512 fixed - %asn function tagged as obsolete.
* Bug #6615 fixed - ui(get|put)file did not center the file dialog on the last focused window.
* Bug #6689 & #6690 fixed - grand now works with complexes, polynomials, booleans, integers, sparses and strings,
and can handle row vectors, matrices and hypermatrices of thoses types.
* Bug #6824 fixed - resize_matrix did not manage hypermatrices.
* Bug #6832 fixed - Matrices of rationals can now be transposed via the " .' " operator.
* Bug #6859 fixed - xlabel and xtitle could overlapped.
* Bug #6930 fixed - Matplot handle had no rect property.
* Bug #7038 fixed - A toggle button now manages datatip mode.
* Bug #7040 fixed - Example and description for getMatrixOfIntegerPrecision modified in help page.
* Bug #7047 fixed - milk_drop is now obsolete. It will be removed in Scilab 5.5.1, but will be kept as a demonstration.
* Bug #7051 fixed - fieldnames help page updated.
* Bug #7084 fixed - Old, not documented and deprecated gr_menu function removed.
* Bug #7085 fixed - 'edit' uicontrols did not support multiple line edition.
* Bug #7133 fixed - help_from_sci with no input argument now launches a full demonstration.
* Bug #7169 fixed - It was not possible to specify different option value (thickness, style, ...) for X and Y grids.
* Bug #7205 fixed - length(H) applied to a non-string hypermat returned 3 instead of size(H,"*").
* Bug #7244 fixed - Extraction from a struct array with a boolean vector had a strange behavior.
* Bug #7304 fixed - exportUI did not switch filename extension when filter was changed.
* Bug #7417 fixed - Auto-positioning of datatips did not take the curvature into account.
* Bug #7561 fixed - roots help page now explains that coefficients are used in the contrary order of poly.
* Bug #7570 fixed - The switch criterion on x and y is now explained in beta() help page.
* Bug #7585 fixed - psi.f moved from "elementary functions" to "special functions" module.
* Bug #7593 fixed - stdev now encompasses msd and st_deviation thanks to a new optional input argument.
* Bug #7650 fixed - isempty(tlist(...)) always returned false, even when all defined fields were empty.
* Bug #7666 fixed - Inconsistencies between and/or and &/| fixed.
* Bug #7705 fixed - "dimension", "minbounds" and "maxbounds" fields have been documented in Genetic algorithms help pages.
* Bug #7739 fixed - Axis position was invalid in log modes.
* Bug #7771 fixed - There was no item about arrow_size in champ_properties help page.
* Bug #7772 fixed - There was no description, no example about line_style property in polyline help page.
* Bug #7858 fixed - variance and variancef can now return the mean of the input
in a new output argument and take the a priori mean as input.
* Bug #7879 fixed - string now accepts plist type, and printing a plist displays that string.
* Bug #7905 fixed - Figure icon can now be changed using dedicated property.
* Bug #7916 fixed - nansum([]) returned NaN value while this function had to ignore it.
* Bug #7986 fixed - spec gateway renamed from sci_eig.c to sci_spec.c.
* Bug #7999 fixed - SwingScilabFileChooser.getFilterIndex() was unusable.
* Bug #8031 fixed - cdfgam error message fixed.
* Bug #8060 fixed - Improved list display in the variable browser.
* Bug #8131 fixed - It was not possible to choose the number of marks and the line width in legends.
* Bug #8133 fixed - Ticks disappeared in planar 3-D view.
* Bug #8196 fixed - Error messages dealing with negative thickness were not standard.
* Bug #8231 fixed - xrect help page did not say that clipping property was inherited.
* Bug #8247 fixed - regress tagged as obsolete.
* Bug #8290 fixed - DELAYV_f block documentation fixed.
* Bug #8323 fixed - Scilab "About Box" did not hide Scilab main window.
* Bug #8337 fixed - mtlb_rand now uses the "uniform" rule, whatever the random rule set is.
* Bug #8379 fixed - It was not possible to delete the selected datatip with DELETE or BACKSPACE.
* Bug #8745 fixed - Extracting from an empty matrix automatically returned an empty matrix.
* Bug #8956 fixed - xpoly, xfpoly, xrect, xsegs and xarc did not update data_bounds property.
* Bug #9031 fixed - Misalignment of text when using xstring with a matrix fixed.
* Bug #9033 fixed - auto_dimensioning property for text handles was not documented.
* Bug #9110 fixed - Examples and references to other functions added in Statistics help pages.
* Bug #9309 fixed - comparison help page updated to document issue with empty matrix.
* Bug #9319 fixed - Huge polylines could not be exported in PS/EPS.
* Bug #9444 fixed - with_embedded_jre function removed.
* Bug #9493 fixed - Title is now correctly set when starting Scilab and focus is set on Console.
* Bug #9627 fixed - Arguments checking added in optimsimplex_* functions.
* Bug #9697 fixed - Displayed information for optim "qn" and "gc" with bounds and imp=1 fixed.
* Bug #9701 fixed - optim with "qn" option was failing for large problems.
* Bug #9819 fixed - unwrap function did not exist in Scilab.
* Bug #9840 fixed - Default G tolerance in lsqrsolve was too large.
* Bug #10012 fixed - lmisolver and lmitool called with no input now produce errors.
* Bug #10083 fixed - plot3d could not be used with only one input argument.
* Bug #10122 fixed - replot could not be used in 3-D.
* Bug #10175 fixed - Clearer example added for sp2adj to adj2sp conversion (and backwards conversion).
* Bug #10214 fixed - evstr help page updated to mention that input argument must not be composed of
continuation marks (..).
* Bug #10221 fixed - ifftshift function did not exist in Scilab.
* Bug #10234 fixed - reglin function moved from CACSD to Statistics module.
* Bug #10243 fixed - fun2string(X) called X before returning its code.
* Bug #10271 fixed - ordmmd now checks the consistency of the third input argument with the
input matrix defined by the first two input arguments.
* Bug #10273 fixed - spchol help page now displays an example showing how to use its output arguments.
* Bug #10391 fixed - Error when using completion after a global variable clear fixed.
* Bug #10428 fixed - Java based components of Scilab showed a library load error in CLI mode.
* Bug #10445 fixed - In SciNotes, CTRL+Drag&Drop moved text rather than copying it.
* Bug #10470 fixed - In SciNotes, split "Horizontally" or "Vertically" was meaningless.
* Bug #10621 fixed - Figure without docking/undocking capabilities can now be created.
* Bug #10645 fixed - File encoding could not be given as argument in xmlRead.
* Bug #10718 fixed - New "Resize" property added to figures.
* Bug #10805 fixed - Documentation on left bracket was superfluous and is now removed.
Refer to brackets for information on "[" and "]".
* Bug #10816 fixed - Typo in part error message fixed.
* Bug #10830 fixed - Hypermatrix insertion with a negative index returned a wrong error message.
* Bug #10833 fixed - exists help page updated.
* Bug #10840 fixed - Keyboard arrows were disabled on 'slider' type uicontrols.
* Bug #10856 fixed - analpf did not return the right result.
* Bug #10932 fixed - Startup directory was not saved/restored in preferences.
* Bug #10936 fixed - Scilab hung with invalid strf in plot2d.
* Bug #10942 fixed - Function soundsec revised. Now soundsec can be used for non integer values of time.
* Bug #10998 fixed - matrix*hypermatrix and hypermatrix*matrix operations failed.
* Bug #11001 fixed - exists and isdef did not work with primitives.
* Bug #11007, #11008 & #11009 fixed - New conjgrad function (Conjugate Gradient methods "pcg", "cgs", "bicg" and "bicgstab").
* Bug #11303 fixed - Exception while searching with multiple tabs in SciNotes fixed.
* Bug #11305 fixed - Performances improved with a better way to update data in Graphics.
* Bug #11523 fixed - In SciNotes, 'whereami line numbering' was not clear enough.
* Bug #11571 fixed - x_mdialog did not let the Look&Feel select the window size.
* Bug #11575 fixed - There was no preview of GIF files in exportUI dialog.
* Bug #11576 fixed - exportUI did not propose gcf().figure_name as default file name.
* Bug #11616 fixed - Figure menubar could not be made invisible.
* Bug #11629 fixed - Interactive zoom did not work properly in datatip mode.
* Bug #11680 fixed - GUI functions in Scilab 5.4.X were much slower than in Scilab 5.3.3.
* Bug #11714 fixed - help_from_sci sometimes failed when input function had "<imagedata>" comments.
* Bug #11779 fixed - Wrong variable type in the documentation of getNbInputArgument and getNbOutputArgument fixed.
* Bug #11789 fixed - Documentation was missing for nbInputArgument.
* Bug #11814 fixed - Typo in CACSD help chapter fixed.
* Bug #11876 fixed - ilib_include_flag now returns a string when called with a string column vector as input.
* Bug #11953 fixed - Scilab crashed when global("") was typed.
* Bug #11964 fixed - uicontrol coordinates system did not take figure resize into account.
* Bug #11996 fixed - eye extended to hypermatrix.
* Bug #12012 fixed - Misleading perl function should not be part of Scilab (tagged as obsolete).
* Bug #12037 fixed - Simplified Chinese version of SciNotes displayed warnings at startup.
* Bug #12073 fixed - Width of code examples has been decreased in XML help pages.
* Bug #12082 fixed - convstr function did not work with non-ASCII symbols.
* Bug #12121 fixed - inv function did not work for complex sparse matrices.
* Bug #12130 fixed - flipdim can now flip blocks, thus making jmat obsolete.
* Bug #12145 fixed - demo_mdialog internal function removed.
* Bug #12156 fixed - Closing a Scilab session in Javasci could led to a HDF5 error message.
* Bug #12170 fixed - Calling matfile_listvar on an empty file returned an error.
* Bug #12306 fixed - Invalid memory free on completion in NWNI mode fixed.
* Bug #12308 fixed - create_palette help page removed (function removed).
* Bug #12334 fixed - Mark color in legend was invalid.
* Bug #12412 fixed - Typo fixed in some error messages.
* Bug #12439 fixed - edit_error returned a wrong message when there was no recorded error.
* Bug #12440 fixed - Unitary test added for bitxor.
* Bug #12465 fixed - ATOMS Default categories names were not localized.
* Bug #12472 fixed - grand and link error messages fixed.
* Bug #12481 fixed - xlabel could not be used with Scilab property names.
* Bug #12485 fixed - xchange returned bad values with log scale.
* Bug #12492 fixed - Exported EPS files were invalid when dash patterns were too long.
* Bug #12496 fixed - zoom_rect could led to a crash in log scale.
* Bug #12535 fixed - In a French localized Scilab, comma was used as decimal separator when zooming (rather than point).
* Bug #12567 fixed - Error messages fixed in ricc.
* Bug #12622 fixed - Various typos fixed in error messages.
* Bug #12672 fixed - Ticks part of axes_property help page updated.
* Bug #12673 fixed - Ticks were drawn outside of axes area.
* Bug #12682 fixed - Key events were disabled after zooming.
* Bug #12683 fixed - proc_name(k, gwin) callback was badly managed depending on
input arguments of addmenu function.
* Bug #12714 fixed - csvDefault("decimal", ",") returned %f while this value was valid.
* Bug #12716 fixed - In SciNotes, RTL languages were not correctly displayed.
* Bug #12725 fixed - Datatips did not work in logarithmic scale.
* Bug #12733 fixed - There was no way to direct graphs to nothing with driver function.
* Bug #12737 fixed - In SciNotes, autosave did not create directory if it did not exist.
* Bug #12763 fixed - Value of "listbox" style uicontrols was not updated when using arrow keys.
* Bug #12769 fixed - xset("window", 1) did not set the current axes.
* Bug #12784 fixed - Misleading error message in many functions when passing an integer
argument instead of double argument fixed.
* Bug #12785 fixed - plot did not allow int data as first argument.
* Bug #12803 fixed - warning(['foo','bar']) printed two 'WARNING: '.
* Bug #12819 fixed - Link to contributors website page fixed in the documentation.
* Bug #12826 fixed - <warning> and <note> tags were not managed in the documentation.
* Bug #12854 fixed - configure failed to detect custom installation of docbook.
* Bug #12860 fixed - Missing semicolon in style.css added.
* Bug #12880 fixed - A warning is displayed when transposing arguments of plot.
* Bug #12882 fixed - Some help pages were not clear.
* Bug #12896 fixed - Typos fixed in XML module error messages.
* Bug #12900 fixed - It is now possible to set proxy options in Preferences.
* Bug #12910 fixed - Typos fixed in several help pages.
* Bug #12938 fixed - No Java compiler was available in Linux binary version.
* Bug #12943 fixed - Datatips did not work properly when 2-D plots were rotated.
* Bug #12945 fixed - Datatips could not be dragged properly in zoomed axes.
* Bug #12948 fixed - When host was not found, getURL caused a crash to desktop.
* Bug #12950 fixed - getURL ignored the proxy settings under Windows.
* Bug #12951 fixed - Interactive zoom was broken.
* Bug #12952 fixed - It was not always possible to search a word in a file with SciNotes.
* Bug #12956 fixed - splitURL with no protocol in URL provoked an access
violation exception.
* Bug #12957 fixed - splitURL and getURL were not declared as new 5.5 functions.
* Bug #12962 fixed - xinfo documentation was not clear.
* Bug #12967 fixed - Data editor icon was not 16x16.
* Bug #12963 fixed - drawaxis did not place the axis properly.
* Bug #12966 fixed - Rotation, tool tip and other Xcos plot actions were
disabled by default.
* Bug #12968 fixed - A variable named 'temp' could not be saved.
* Bug #12971 fixed - getURL downloaded file name was wrong.
* Bug #12973 fixed - Exception occurring when clicking on a figure at creation fixed.
* Bug #12976 fixed - getURL returned a file name instead of a file path.
* Bug #12978 fixed - exportUI returned an error when input argument was a figure handle.
* Bug #12979 fixed - exportUI did not work with vectorial export.
* Bug #12990 fixed - GED features conflicted with figure events.
* Bug #12992 fixed - The sigma value was always equal to "LM" in eigs.
* Bug #12993 fixed - stdev returned value depended on 'x' being defined in the environment.
* Bug #13000 fixed - []./int8(3) and on int8(3)./[] led to an endless recursive.
* Bug #13002 fixed - modulo and pmodulo did not support integers & hypermatrices.
* Bug #13003 fixed - String to enum converter added to Java external objects.
* Bug #13004 fixed - Debug infos were displayed in case of an error with eoj.
* Bug #13005 fixed - jcompile did not use the classpath to compile.
* Bug #13007 fixed - Compilation errors were not returned by jcompile.
* Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
* Bug #13010 fixed - Wrong class was returned by jcompile (with ecj).
* Bug #13011 fixed - ilib_compile failed under Mac OS X 10.9.
* Bug #13012 fixed - Vectorial export of rotated strings was wrong.
* Bug #13013 fixed - In SciNotes, the first proposed directory to save a file was not current working directory.
* Bug #13014 fixed - Update of the efficiency inner variable improved in optim_ga.
* Bug #13015 fixed - Computation of efficiency inner variable improved in optim_ga.
* Bug #13022 fixed - Vectorial export did not clip large segments.
* Bug #13023 fixed - xs2pdf crashed under Windows when the target file was already opened.
* Bug #13027 fixed - There was no autowrap into array in JIMS.
* Bug #13031 fixed - Lorentz Butterfly demonstration fixed.
* Bug #13032 fixed - CMATVIEW help page example fixed and CMAT3D help page example created.
* Bug #13033 fixed - -1 could not be used as nax argument in plot2d.
* Bug #13036 fixed - The help page associated to the history browser was wrong.
* Bug #13041 fixed - Wrong result was returned for "integer scalar" minus "integer vector".
* Bug #13042 fixed - Texts in graphics were not properly centered.
* Bug #13047 fixed - jcompile did not allow class reloading.
* Bug #13049 fixed - New handled protocols added in links in SciNotes.
* Bug #13050 fixed - The result of mvvacov was not symmetric.
* Bug #13051 fixed - SciNotes restoration could block desktop one.
* Bug #13053 fixed - datatipCreate did not return datatip handle.
* Bug #13055 fixed - Array indexing did not follow Scilab convention in JIMS.
* Bug #13061 fixed - hdf5 demonstration failed with a read-only file.
* Bug #13063 fixed - Color selection in SciNotes preferences threw exceptions.
* Bug #13064 fixed - Deleting a link connected to a split led to a translated link.
* Bug #13069 fixed - Documentation for %MODELICA_USER_LIBS updated.
* Bug #13066 fixed - data_bounds was not fully documented in axes_properties.
* Bug #13080 fixed - Contextual menu was unavailable for datatips management.
* Bug #13082 fixed - Datatip mark style was not inherited from the parent polyline.
* Bug #13083 fixed - Datatip marks did not inherit colors from the parent polyline.
* Bug #13084 fixed - interp_mode property could not be set on all datatips of the same polyline.
* Bug #13085 fixed - A datatip could not be moved on a circle.
* Bug #13092 fixed - Optimizations now check the user function output (must be real).
* Bug #13093 fixed - Removed trailing "\n" in the head_comments error message.
* Bug #13101 fixed - When x-axis was in reverse position x_location='origin' failed.
* Bug #13102 fixed - savematfile did not support "-v7.3" option.
* Bug #13108 fixed - Time between ATOMS database updates is now a month (was a day) and is configurable.
* Bug #13109 fixed - pol2str now supports polynomials with complex coefficients and hypermatrices.
* Bug #13111 fixed - sqrt returned different results when imaginary part was -0 versus 0.
* Bug #13114 fixed - clear_pixmap/pixmap property should have been removed in Scilab 5.4.1.
* Bug #13116 fixed - qpsolve now respects upper-bounds constraints.
* Bug #13119 fixed - mget and mgetl now return an error when called with decimal values as number of lines.
* Bug #13121 fixed - ode "rk" option crashed Scilab when the user derivative function failed.
* Bug #13127 fixed - There were no subticks with user defined ticks.
* Bug #13132 fixed - There were missing graduations when data_bounds interval was too small.
* Bug #13134 fixed - User-defined ticks in log scale were invisible.
* Bug #13136 fixed - exists and isdef failed for input arguments longer than 1.
* Bug #13139 fixed - fft help page fixed.
* Bug #13140 fixed - Various typos fixed in help pages.
* Bug #13144 fixed - csvRead can now ignore header comments thanks to a new input argument.
* Bug #13146 fixed - profile failed when a comment was on the same line as a function declaration.
* Bug #13150 fixed - Vectorial export used too much memory for grayplot.
* Bug #13152 fixed - Typo fixed in syslin French help page.
* Bug #13164 fixed - Miscolorization in SciNotes colors preferences fixed.
* Bug #13165 fixed - Preferences reset did not show a confirmation pop-up.
* Bug #13168 fixed - Wrong interpretation of star followed by minus fixed.
* Bug #13170 fixed - Legends for plzr plots fixed.
* Bug #13174 fixed - Scilab crashed after XML element removal.
* Bug #13175 fixed - argn help page updated with specific cases.
* Bug #13177 fixed - Error when changing x_ticks.locations on axes fixed.
* Bug #13185 fixed - When the "checked" option of a uimenu was set to "on" for
the first time, the display order of other uimenus was changed.
* Bug #13186 fixed - csvRead freezed Scilab if separator was an empty string.
* Bug #13187 fixed - xmltoformat did not include "imageobjects" in output.
* Bug #13188 fixed - The output argument of eomday function was not pre-dimensioned.
* Bug #13191 fixed - isempty(rational) returned an error message.
* Bug #13192 fixed - horner returned an error message when the input arguments did not have the same size.
* Bug #13194 fixed - part help page improved.
* Bug #13199 fixed - There was a thin blue line around acknowledgements button in about box.
* Bug #13200 fixed - about() ACKNOWLEDGEMENTS did not render utf-8 characters.
* Bug #13201 fixed - x_mdialog entries had no margin.
* Bug #13202 fixed - kernel help page improved.
* Bug #13203 fixed - Typos fixed in some error messages.
* Bug #13205 fixed - group accepted continuous transfer functions.
* Bug #13208 fixed - New nanreglin function to handle NaNs for reglin().
* Bug #13210 fixed - Incorrect argument description in mseek help page.
* Bug #13213 fixed - User-defined margins were reset by auto computation of the margins.
* Bug #13215 fixed - clf(1001) returned an error.
* Bug #13218 fixed - Typos fixed in core module help pages.
* Bug #13226 fixed - Completion with accented chars could led to a crash.
* Bug #13227 fixed - Invalid windowsConfiguration.xml file could avoid Scilab startup.
* Bug #13233 fixed - Wrong simulation result of step response csim('step',t,H) fixed.
* Bug #13234 fixed - lmitool calling sequence clarified.
* Bug #13236 fixed - "parents" help page has been renamed to "parentheses".
* Bug #13238 fixed - Wrong legends display fixed.
* Bug #13243 fixed - optim with "gc" option failed when imp<0.
* Bug #13247 fixed - Hypermatrix in structure definition did not work properly.
* Bug #13252 fixed - Minor typos fixed in Graphics messages.
* Bug #13258 fixed - Bad number display in datatips fixed.
* Bug #13267 fixed - Implicit typecasts in scicos.c fixed.
* Bug #13271 fixed - plot2d with logarithmic scale and %nan value froze Scilab.
* Bug #13272 fixed - Error occurring when reading CSV files with comment option on a CSV file without comment fixed.
* Bug #13280 fixed - Axes were not always displayed properly after figure resize.
Xcos Bug Fixes
==============
* Bug #9995 fixed - LOGICAL_OP drew the parameters over the block.
* Bug #11975 fixed - Inverted Pendulum demonstration did not compile.
* Bug #12423 fixed - Data types of SWITCH2_m were not documented.
* Bug #12685 fixed - The lincos and steadycos functions did not load
the XcosLibs so all the blocks were unknown.
* Bug #12998 fixed - 'ans' was not ignored in the context results.
* Bug #13006 fixed - Selection to superblock (in_f and out_f) failed.
* Bug #13030 fixed - Selection to superblock did not reset the origin.
* Bug #13059 fixed - NaN propagated at startup made the simulation fail.
* Bug #13071 fixed - Three unused functions in Xcos macros now specified as not mandatory
to write new blocks.
* Bug #13172 fixed - Logic block help file had some typo errors.
* Bug #13239 fixed - Grid was not shown in zoomed log scale.
* Bug #13250 fixed - CLSS wrongly handled scalar values.
Changes between version 5.4.1 and 5.5.0-beta-1
==============================================
New Features
=============
* New special functions:
- erfi - The imaginary error function.
- dawson - Compute the Dawson function (scaled imaginary error).
* New functions introduced:
- getURL - Download a URL (HTTP, HTTPS, FTP...)
- splitURL - Split a URL (HTTP, HTTPS, FTP...)
- cov - Covariance matrix. Deprecates mvvacov. See bug #11896.
- ismatrix - Check if a variable is a matrix. See bug #10456.
- isrow - Check if a variable is a row vector. See bug #10456.
- iscolumn - Check if a variable is a column vector. See bug #10456.
- issquare - Check if a variable is a square matrix. See bug #10456.
- cross - Vector cross product. See bug #9941.
- members - Number of occurrences and linear indexes of common values between
two matrices of the same type.See bug #12705.
* Complete set of functions to read and write any HDF5 file from Scilab added.
* New Solver:
- daskr - differential-algebraic system solver with rootfinding 'daskr', using
BDF methods with direct and preconditioned Krylov linear solvers, based on ODEPACK.
* Based on JIMS external module, Scilab provides functions to interact
with Java objects.
* erf, erfc, erfcx and calerf functions now support complex arguments.
* isnum has been redesigned in native code. Performance improvements up to 130x.
See bug #10404.
* Usage of the '$' keyword in part function allowed.
* The histplot command can now be used with the option polygon=%t/%f to add the
frequency polygon chart (Thanks to Mehran Khorshidi).
* Multi level completion on mlist, struct, XML structures...
* Variable browser improvements:
- The variable browser also shows the size of integers and the user type of
the tlist/mlist.
See bugs #12523 and #10409.
- It is now possible to delete variables from the variable browser.
See bug #9447.
- A user can now plot variables from the variable browser (this functionality was
already available in the variable editor).
* Added lighting effect for plot of surfaces. Lighting can be enabled
creating light objects or disabled by deleting them. The following function
was introduced:
- light - Creates a light graphic object.
* Localization:
- Multiple domains in localization managed.
- addlocalizationdomain function added for a new domain creation.
- Optional parameter added to gettext to manage domains.
- tbx_generate_pofile and tbx_build_localization added to create localization files for
modules.
* Windows Solution updated to Visual Studio 2012.
* -keepconsole option added for Scilab Windows to facilitate debugging.
Calling Scilab with this option will leave the console box window opened at startup.
* License update: switch to the CeCILL 2.1.
Improvements
=============
* New calling sequence allowed for nicholschart: nicholschart(gains, phases, colors).
See bug #7828.
* qp_solve can now take up to 5 output arguments. The last one is an error flag,
if it is present, then the function will display a warning instead of an error.
See bug #10269.
* graypolarplot has been improved in terms of performances and rendering.
See bug #12641.
* nthroot is now vectorizable.
See bug #12678.
* New optional output argument for routh_t.
See bug #12829.
Differential Equations
======================
* Netlib's Quadpack, used for definite integration, has been updated to match the upstream.
SciNotes
========
* Autosave feature can now use %date to append the current date to the backup filename
(See bug #12712).
Xcos
====
* New DAE solver: DDaskr, using BDF methods with direct Newton and preconditioned Krylov
linear solvers, which includes rootfinding.
It is available from dae function.
* In Modelica initialization GUI, inputs (eg. sensor) were not handled.
* Sundials updated to the "2.5.0" version, keeping our modifications.
* JGraphX updated to the "2.1.0.7" version, updating our hooks performance.
* API changed in the scicos_block4 interface: the uid value is not available
inside the simulation function.
* xcosAddToolsMenu added to let the user perform some actions on the graph.
* CBLOCK4 block added to the "User-Defined Functions"
Toolbox Skeleton
=================
* Some Xcos specific content added to xcos_toolbox_skeleton help pages.
Compilation
============
* Minimal version of Flexdock (1.2.4) enforced.
Obsolete & Removed Functions
============================
* Scilab 5.5.X family will be the latest family working under Windows XP/2003.
* Vector ^ scalar syntax declared as obsolete. See bug #11524
* The third argument of poly function will be more strict.
Only the following strings are allowed: "roots", "coeff", "c", "r".
* Option and direction arguments of gsort will be more strict in all cases.
Only the following strings are allowed:
- option: "r" "c" "g" "lr" "lc"
- direction : "d" "i"
* nfreq tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use tabul instead.
* IsAScalar tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use isscalar instead.
* chart tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use nicholschart instead.
* Second output argument of add_param tagged as obsolete. Will be removed in Scilab 5.5.1.
* mvvacov tagged as obsolete. Will be removed in Scilab 6.0.0.
Please use cov instead.
* dft removed, please use fft instead.
* sscanf removed, please use msscanf instead.
* fscanf removed, please use mfscanf for files opened with mopen or read for files opened
with file instead.
* fprintf removed, please use mfprintf for files opened with mopen or write for files
opened with file instead.
* mfft tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use fft instead.
Scilab Bug Fixes
================
* paramfplot2d: When theta input argument was a column vector, an error occurred.
* Bug #2267 fixed - Wrong error message when ticks locations and labels did not have the
same sizes.
* Bug #2416 fixed - Particular case (string([]) returns []) has been added in string help
page.
* Bug #3511 fixed - strindex did not return all occurrences in regexp mode.
* Bug #3928 fixed - An error was returned when a matrix was flipped along the third
dimension.
* Bug #4042 fixed - squeeze returned a hypermatrix instead of a matrix when at least one
dimension was equal to 1.
* Bug #4085 fixed - num2cell help page added.
* Bug #4229 fixed - delip did not return an error if one element of its first input
argument was negative.
* Bug #4383 fixed - csim with "step" and "impuls" now works with direct feedthrough.
* Bug #4481 fixed - iir help page updated to precise that frq can be a scalar.
* Bug #4731 fixed - lqr failed when the time domain of an input was a number.
* Bug #4743 fixed - Graphics with too big or too small values did not work.
* Bug #5017 fixed - norm rewritten to take benefit from the Lapack package performance.
* Bug #5073 fixed - New parameter added in strtod function (decimal separator).
* Bug #5205 fixed - permute was slow for large hypermatrices.
* Bug #5207 fixed - grand can now return a hypermatrix.
* Bug #5365 fixed - makecell help page was in the "compatibility functions" directory
instead of being in "data_structures".
* Bug #5539 fixed - sylv help page was wrong in the discrete-time case.
* Bug #5616 fixed - typeof(uiCreateTree(...)) returned "Tree" instead of "uitree".
* Bug #5694 fixed - numdiff help page clarified.
* Bug #5779 fixed - xnumb number format was too small (+ unit test added).
* Bug #6037 fixed - macrovar help page improved.
* Bug #6168 fixed - zpbutt, zpch1, zpch2 and zpell help pages were unclear.
* Bug #6390 fixed - The "external" argument of odedc was not well documented and
not tested.
* Bug #6427 fixed - full([%T %F]) returned an error message.
* Bug #6466 fixed - Example with vectorized input added in mprintf and msprintf help pages.
* Bug #6584 fixed - mfft tagged as obsolete.
* Bug #6638 fixed - The profiler output was incorrect by a factor of 1000 under Windows.
* Bug #6693 fixed - modulo did not accept polynomial inputs. Help page was not updated.
* Bug #6752 fixed - unit test scilab.tst has been split in different tests.
* Bug #6840 fixed - New line_style added.
* Bug #6988 fixed - Error messages in modules/data_structures/src/c/hmops.c were not
standard.
* Bug #7026 fixed - There was no unit test for plot2d.
* Bug #7080 fixed - Some graphic macros did not use standard error messages.
* Bug #7204 fixed - geomean applied to a hypermatrix gave wrong results.
* Bug #7206 fixed - If the second input argument of meanf function was a hypermatrix,
this function returned an error.
* Bug #7296 fixed - %nan, %inf and -%inf enabled for the cdf* functions.
* Bug #7411 fixed - clf forgot to turn off the datatip mode.
* Bug #7486 fixed - LAPACK versions of DGELSY and ZGELSY now used.
* Bug #7596 fixed - A same error happening in different places now displays the same
error message.
* Bug #7648 fixed - CDF functions now display a warning for non integer
"degrees of freedom" argument.
* Bug #7655 fixed - An example added in type help page, for type(X)=11 and type(X)=13.
* Bug #7684 fixed - Introduction demonstration splitted into subsections.
* Bug #7781 fixed - The second parameter of iqr function had no effect.
* Bug #7782 fixed - lcm and gcd help pages improved to tell the user how to use both
functions.
* Bug #7824 fixed - title function properties did not support an indexed color.
* Bug #7826 fixed - chart tagged as obsolete.
* Bug #7828 fixed - Slight improvements in nicholschart.
* Bug #7848 fixed - The third argument of correl function is now optional.
* Bug #7877 fixed - iirgroup function fixed.
* Bug #7927 fixed - Output "flag" in qmr function was not well documented.
* Bug #7960 fixed - plzr could not produce pole zero plot for a simple transfer function.
* Bug #8058 fixed - The user can now set the tolerances of intc function.
* Bug #8098 fixed - cumsum could not be applied to rational matrices.
* Bug #8162 fixed - Area of stability of plzr was wrong for continuous systems
(+unit test added).
* Bug #8211 fixed - Parameters module demonstration finalized.
* Bug #8234 fixed - strtod did not return an empty matrix when the input argument was an
empty matrix.
* Bug #8264 fixed - Matlab to Scilab dictionary help page updated for atan2.
* Bug #8319 fixed - dbphi(hypermat) and phasemag(hypermat) returned a matrix instead of
a hypermatrix.
* Bug #8373 fixed - clear can now handle a matrix of strings argument.
* Bug #8415 fixed - optim_moga, optim_nsga, optim_nsga2 can now take list as input
arguments, as explained in their help pages.
* Bug #8462 fixed - bvodeS could make Scilab unstable.
* Bug #8470 fixed - bvode displayed some output in terminal window and not in
Scilab console.
* Bug #8479 fixed - The latest Saxon version was not supported.
* Bug #8511 fixed - sprand now uses grand instead of rand and grand functions. Internal
state of the random generator is no more changed.
* Bug #8561 fixed - ddassl, ddasrt, ddaskr: abs and rel tolerance sizes are now checked.
* Bug #8597 fixed - grand/clcg4 could display uncontrolled messages as warning.
* Bug #8607 fixed - Some error messages in modules/overloading/macros were not standard
and not localized.
* Bug #8614 fixed - Unit test for barhomogenize added.
* Bug #8636 fixed - roots help page updated (default algorithm value was wrong).
* Bug #8667 fixed - The handling of %nan in min, max, median functions was not properly
documented.
* Bug #8680 fixed - "end" output argument of regexp function has been changed.
* Bug #8687 fixed - typeof function failed on uint8, depending on the format
(+ unit test added).
* Bug #8695 fixed - optim_ga used old (initial) values instead of newly-computed ones.
* Bug #8778 fixed - Call_ScilabOpen, TerminateScilab could not be called more
than 80 times in a loop.
* Bug #8779 fixed - gsort did not preserve the order of equal elements, in
lexicographic sort.
* Bug #8820 fixed - squeeze did not return a matrix when the number of dimensions
of the result was less or equal to 2.
* Bug #8824 fixed - taucs_chfact returned a segfault (not the case in nwni mode).
* Bug #8840 fixed - fileparts did not manage matrix of strings.
* Bug #8856 fixed - Non regression test added for [k,l,m,...]=find(a==5).
Non regression test of bug #476 updated.
* Bug #8857 fixed - Non regression test of bug #477 updated.
* Bug #8858 fixed - Non regression test of bug #480 updated.
* Bug #8862 fixed - mget and mput could not read and write 64 bit data from
binary files.
* Bug #9004 fixed - bitcmp function called with one input argument returned an error.
* Bug #9020 fixed - exists function did not accept matrix as first input argument.
* Bug #9059 fixed - tbx_build_macros and genlib did not stop even if an error occurred.
* Bug #9109 fixed - nfreq tagged as obsolete.
* Bug #9158 fixed - zeros called with a big number returned an empty matrix instead
of an error.
* Bug #9208 fixed - Added three optional output arguments to optim,
to retrieve #iterations, #evaluations and a termination indicator.
* Bug #9385 fixed - The type checking in trigonometric functions has been added.
* Bug #9394 fixed - is_param recognized "plist" as an existing field.
* Bug #9395 fixed - add_param did not check its input arguments.
* Bug #9396 fixed - add_param accepted duplicate keys.
* Bug #9459 fixed - Default values of the optional plot3d arguments were not documented.
* Bug #9537 fixed - optimbase_configure only allowed row vectors as initial value.
Column vectors now allowed by transposing them.
* Bug #9538 fixed - optimbase_checkshape only allowed row vectors as output arguments of
cost function. Column vectors are now allowed by transposing them.
* Bug #9577 fixed - Setting neldermead_configure("-numberofvariables") is now optional,
setting neldermead_configure("-x0") initializes -numberofvariables
implicitly.
* Bug #9601 fixed - Cylinder demonstration fixed.
* Bug #9688 fixed - optim could crash when "imp" option was < 0. It is now set to 0 in
that case.
* Bug #9690 fixed - The "imp" option for optim could crash Scilab and was not consistent
with the help page.
* Bug #9691 fixed - "imp" option in optim help page was poorly documented.
* Bug #9694 fixed - Example in optim help page fixed to display correct counters.
* Bug #9702 fixed - Contrary to what optim help page stated, the "gc" algorithm does use
the "epsx" parameter.
* Bug #9780 fixed - gmres solver did not run with complex systems.
* Bug #9788 fixed - neldermead can now produce a warning when it fails to converge,
thanks to a new input argument "warn".
* Bug #9821 fixed - getrelativefilename did not manage matrix of strings.
* Bug #9851 fixed - Error message occurred because of a cut-off frequency of 0.25Hz
with irr.
* Bug #9859 fixed - It was not possible to draw arrows in 3-D using xarrows.
* Bug #10146 fixed - In SciNotes, 'help on keyword' moved from bottom to top in the popup
menu.
* Bug #10180 fixed - det was not defined for sparse matrices.
* Bug #10213 fixed - sci2exp help page updated to document the impact of format function.
* Bug #10216 fixed - Invalid syntaxes for zeros, ones, eye, rand, like zeros(2,:).
* Bug #10226 fixed - When a // <empty session> line was deleted, all sessions
histories were folded.
* Bug #10254 fixed - Slight improvements in ones help page.
* Bug #10269 fixed - qp_solve can now take up to 5 output arguments. The last one is an
error flag, if it is present, then the function will issue a warning
instead of an error.
* Bug #10276 fixed - qp_solve segfaulted with large matrices.
* Bug #10287 fixed - Error message added for complex expression as input argument of
integrate function.
* Bug #10305 fixed - Comparison of lists with empty items returned an error message.
* Bug #10596 fixed - exit(xxx) from Scilab failed.
* Bug #10818 fixed - home, %e, %t, %f, %z and %s help pages added.
* Bug #10823 fixed - fullpath returned different results under Windows and Linux for
non-existent file.
* Bug #10862 fixed - Add a without Internet connection installation
global configuration in the installer.
* Bug #10866 fixed - det was not equivalent to detr for rational matrices.
* Bug #10906 fixed - Typo fixed in cls2dls help page.
* Bug #10930 fixed - The comments in armax function were in French.
* Bug #10995 fixed - Typo fixed in grand help page for Gamma law argument.
* Bug #11065 fixed - The second output argument of unique function contained a wrong result.
* Bug #11067 fixed - Display of ticks labels with closed associated values was wrong.
* Bug #11139 fixed - conj was not defined for sparse matrices (+ unit test added).
* Bug #11308 fixed - Calling sequences in dsearch help page were wrong.
* Bug #11343 fixed - The "isoview" figure property did not work when the axes
margins had been modified.
* Bug #11648 fixed - Copying graphic via the clipboard did not work.
* Bug #11766 fixed - nthroot has been added to m2sci help page.
* Bug #11792 fixed - Lists can be accessed with non integer indexes (list help page
updated).
* Bug #11869 fixed - "Environment" was not localized in preferences.
* Bug #11885 fixed - Each rand has been changed to grand in genetic algorithms and
simulated annealing functions.
* Bug #11891 fixed - Fisher ratio could be inaccurate for one-way ANOVA.
* Bug #11997 fixed - In case of invalid variable name, save function now returns an error
instead of a compatibility warning.
* Bug #12034 fixed - max function did not manage empty matrices.
* Bug #12045 fixed - repmat returned wrong results if the values of an input matrix were
not double.
* Bug #12070 fixed - Removing a module can now be done in an on-line mode even if
it has been installed in an off-line mode.
* Bug #12080 fixed - lsqrsolve always printed messages.
* Bug #12085 fixed - Under Windows, csvWrite wrote wrong EOL.
* Bug #12114 fixed - libstdc++ is now compiled as static instead of using the
library from thirdparty.
* Bug #12118 fixed - ode could take complex externals.
* Bug #12143 fixed - "stop entity picker" (ged(11)) returned an error message.
* Bug #12150 fixed - datatipCreate failed with one single point.
* Bug #12163 fixed - unzoom did not work with a single input argument.
* Bug #12212 fixed - Export of a polyline in 2-D broke it into several segments.
* Bug #12326 fixed - There was no way to set LaTeX font size in preview.
* Bug #12349 fixed - In SciNotes, when the view was splitted, removing a char made the
other view jump.
* Bug #12376 fixed - Exec & edit buttons in the help pages examples were sometimes
misplaced.
* Bug #12413 fixed - ATOMS packages could not be removed if ATOMS had never been on-line.
* Bug #12415 fixed - PATH environment variable grew when using call_scilab in a loop.
* Bug #12426 fixed - By using addErrorMessage, a random string error could be displayed.
* Bug #12433 fixed - show_pixmap function was removed from Scilab but still used in some
functions.
* Bug #12443 fixed - The behavior of mopen in text file mode has been documented
under Windows.
* Bug #12463 fixed - Wrong specification for rect=[x,y,w,h] argument in xstringb
French help page.
* Bug #12470 fixed - Variable browser was not refreshed after loading an environment.
* Bug #12473 fixed - Problems with "é" in mkdir French help page.
* Bug #12475 fixed - csvRead did not support double quoted fields.
* Bug #12490 fixed - plot did not call clf; in its help page example producing a
wrong behavior.
* Bug #12506 fixed - In SciNotes, a miscolorization could occurred when returned values
list was broken.
* Bug #12508 fixed - Wrong error message in rand function fixed.
* Bug #12518 fixed - Polynoms were not displayed by default in the variable browser.
* Bug #12520 fixed - Improve the description of the size in the variable browser.
* Bug #12527 fixed - Scilab user functions were not listed in the variable browser.
* Bug #12547 fixed - In SciNotes, lines were wrongly numbered with splitted function
declarations.
* Bug #12548 fixed - Duplicated code in xmltoformat removed.
* Bug #12550 fixed - optimbase and optimsimplex help pages were not standard.
* Bug #12551 fixed - Stack problem with diary([],"pause") and diary([],"resume") fixed.
* Bug #12556 fixed - A fatal error occurred when calling set with wrong instructions.
* Bug #12557 fixed - Valid function names were not specified in function and functions
help pages.
* Bug #12564 fixed - Compile and run javasci help page was not clear about needed packages.
* Bug #12581 fixed - isfield could not support mlist or tlist.
* Bug #12589 fixed - Call sequence for spzeros & spones were missing in French
help pages.
* Bug #12592 fixed - Scilab hung with plot(-0).
* Bug #12593 fixed - A wrong error message was returned when running genlib with an
error in the sci file.
* Bug #12594 fixed - Invalid SciNotes configuration file avoided SciNotes startup.
* Bug #12600 fixed - mput did not manage unsigned integer.
* Bug #12606 fixed - Overloads for grand were not standard.
* Bug #12613 fixed - gsort did not return correct results with %nan.
* Bug #12614 fixed - Helpbrowser was not launched in EDT.
* Bug #12615 fixed - Graphics seemed to be freezed after a call to plot/bar/barh with
a bad LineSpec argument.
* Bug #12624 fixed - In case of errors in Scilab macros, "make check-TESTS" did not fail
as expected.
* Bug #12627 fixed - At restoration, a window could be out of the screen.
* Bug #12629 fixed - The last example of csim help page defined a function called
input (overwriting the Scilab one).
* Bug #12631 fixed - A "see also" link has been added from progressionbar to waitbar
and vice versa.
* Bug #12634 fixed - ATOMS modules could not be installed from an archive file
already existing in SCI/contrib/archives in "offline" mode.
* Bug #12637 fixed - In some help pages, some signal processing functions were not in
the correct section.
* Bug #12639 fixed - justify([], position) returned an error instead of [].
* Bug #12641 fixed - graypolarplot has been fully vectorized as it was too slow.
* Bug #12657 fixed - Computation of v1.^v2 is now done without any memory allocation,
when v1 and v2 are real arrays, v1 >= 0 and v2 integer.
* Bug #12668 fixed - Undocking SciNotes led to an exception.
* Bug #12678 fixed - nthroot now accepts vector/matrix as second argument.
* Bug #12679 fixed - Argument type check added in gcd and lcm.
* Bug #12686 fixed - Error returned by diff fixed.
* Bug #12702 fixed - When no extra parameters were needed in the cost function,
NDcost did not work.
* Bug #12703 fixed - In SciNotes, common shortcuts 'SHIFT DELETE', 'SHIFT INSERT'
(and others) added.
* Bug #12705 fixed - members function added. It allows to find the number of occurrences
and linear indexes for common values between two matrices of the
same type.
* Bug #12706 fixed - A wrong size of a matrix as input argument of cross function was
not detected.
* Bug #12708 fixed - Incorrect display in SciNotes preferences fixed (onmouseover styles).
* Bug #12712 fixed - In SciNotes, autosaving can now use %date to append the current
date to the backup filename.
* Bug #12715 fixed - Variable cross in pspect and cspect has been renamed because of
conflicts with cross function.
* Bug #12736 fixed - In SciNotes, the Completion window appeared only in first tab.
* Bug #12747 fixed - legendre now accepts the -1 and 1 values for third argument.
* Bug #12749 fixed - fscanfMat help page updated.
* Bug #12758 fixed - Focus issue with plot3d fixed.
* Bug #12761 fixed - The https:// protocol was not supported on ATOMS.
* Bug #12772 fixed - eigs failed when trying to solve a sparse matrix eigen value problem.
* Bug #12774 fixed - Various typos fixed.
* Bug #12775 fixed - Some related functions were not listed in "See also" section of
routh_t help page.
* Bug #12778 fixed - Insertion of an empty matrix in an integer matrix led to a
wrong result.
* Bug #12779 fixed - savewave had a miscoding in the internal function write_wavedat.
* Bug #12783 fixed - There were some inconsistent error messages in dsearch.
* Bug #12790 fixed - Links to ZCOS files in documentation were broken.
* Bug #12791 fixed - More information is now given in case of failure during the ATOMS
autoload step.
* Bug #12793 fixed - Improved the bode() plots with a new option "rad" to convert plot into rad/s
and a new function bode_asymp() to draw the system asymptotes.
* Bug #12794 fixed - calfrq.sci code did not follow Scilab standard.
* Bug #12795 fixed - Typos fixed in CACSD help page.
* Bug #12800 fixed - Typo fixed in Polynomials help page.
* Bug #12804 fixed - Typos fixed in routh_t help page.
* Bug #12807 fixed - Display of showprofile improved.
* Bug #12808 fixed - Add missing </td> in documentation generation (note, warning, ...).
* Bug #12813 fixed - flipdim function extended to any type of input data.
* Bug #12814 fixed - Improvements of pertrans help page.
* Bug #12815 fixed - levin redefined cov as a variable.
* Bug #12816 fixed - Numbers pasted in editvar were not parsed according to locale.
* Bug #12818 fixed - Segfault in set function with invalid property values dimension.
* Bug #12823 fixed - In help generation (toolbox) links were not correctly handled.
* Bug #12827 fixed - noisegen help page improved.
* Bug #12828 fixed - routh_t gave a wrong result if the first element of a row was zero.
* Bug #12829 fixed - New optional output argument added for routh_t function.
* Bug #12830 fixed - In SciNotes, it was not possible to execute a replace action
from the caret position.
* Bug #12831 fixed - In SciNotes toolbar, there was no button to open code navigator.
* Bug #12833 fixed - In SciNotes, there was no autoscroll when searching a pattern.
* Bug #12836 fixed - Error fixed in strcmpi help page.
* Bug #12839 fixed - Typo fixed in getVariablesOnStack help page.
* Bug #12840 fixed - Typo fixed in number_properties.xml help page.
* Bug #12852 fixed - Visual Studio 2012 SDK configuration was incorrect.
* Bug #12858 fixed - Typo fixed in debug and pause French help pages.
* Bug #12859 fixed - Fixed optional argument in isdef help page.
* Bug #12863 fixed - size(state-space, "r") returned an error.
* Bug #12875 fixed - phasemag returned an error for input vector containing zeros.
* Bug #12887 fixed - Scilab hung with auto_clear set to on and log_flags set to true.
* Bug #12888 fixed - sysdiag was not documented about block diagonal matrices build.
* Bug #12906 fixed - champ and champ1 help pages updated
* Bug #12909 fixed - Completion on (mt)list led to a crash.
* Bug #12911 fixed - Matlab to Scilab dictionary help page updated for eig.
* Bug #12913 fixed - linspace returned an error if the third argument was an integer type
variable.
* Bug #12916 fixed - power help page improved.
* Bug #12919 fixed - Rotation on plots was disabled after using menus.
* Bug #12927 fixed - ones function could not take integer type input.
* Bug #12931 fixed - ATOMS redefined "message" keyword.
Xcos Bug Fixes
===============
* Bug #7350 fixed - The I/O ports numbering of a superblock was not updated
when a new port was dropped.
* Bug #8570 fixed - "Region to superblock" has been renamed to
"Selection to superblock".
* Bug #11518 fixed - CLR block-text was displayed out of the bounding box
when zooming.
* Bug #11776 fixed - CMSCOPE did not take into account label&Id parameter.
* Bug #12359 fixed - Xcos files have been converted to ZCOS to gain some space.
* Bug #12384 fixed - Using a Modelica part linked with an explicit link to
another Modelica part led to an algebraic loop error.
* Bug #12387 fixed - The "Modelica initialize" setup menu option did not blur
during simulation.
* Bug #12414 fixed - SWITCH_m block had different behaviors
for different types of inputs.
* Bug #12424 fixed - Calling lincos on a derivative block made Scilab crash.
* Bug #12449 fixed - QUANT_f was not rounding/truncating/flooring/ceiling properly input signal.
* Bug #12460 fixed - xcosPalGenerateAllIcons sometimes crashed Scilab.
* Bug #12461 fixed - Cancelling zoom out by zooming in did not fully work.
* Bug #12561 fixed - SELECT_m and RELAY_f did not behave as expected.
* Bug #12568 fixed - "Recent files" menu entry is now below the "Open" one.
* Bug #12590 fixed - Block shape style was removed on file loading.
* Bug #12603 fixed - ZCOS files could contain blocks with modified (eg. invalid)
parameters.
* Bug #12619 fixed - DLR discrete block did not display LaTeX formula
like CLR continuous block.
* Bug #12651 fixed - The 'nw' scicos_simulate option did not work while
passing a previous Info simulation status.
* Bug #12664 fixed - Inverted pendulum French localization in the Xcos demonstrations was
inaccurate.
* Bug #12667 fixed - 'Recent Files' menu was not localized.
* Bug #12731 fixed - Code generation produced erroneous block.
* Bug #12732 fixed - Improper Copyright comments in the files were generated by the code
generation tool.
* Bug #12796 fixed - There was some mismatches between implicit
and explicit ports of superblocks.
* Bug #12797 fixed - I/O blocks generated by "Selection to Superblocks" had
wrong size.
* Bug #12868 fixed - There were several problems with PULSE_SC block.
* Bug #12869 fixed - min and max were not defined but used in Xcos generated code.
* Bug #12873 fixed - scicos_flat produced an unexpected error after a diagram
load.
* Bug #12874 fixed - CSCOPE marks sizes were too small.
* Bug #12877 fixed - Incorrect output port dimensions and types in GENSIN_f, GENSQR_f,
STEP_FUNCTION and STEP blocks fixed.
* Bug #12924 fixed - Blocks type 2004 was not handled as a valid block type.
* Bug #12934 fixed - Separate compilation of a superblock could fail due to under
determined signal sizes.
|