File: api_list.h

package info (click to toggle)
scilab 5.3.3-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 330,656 kB
file content (1375 lines) | stat: -rw-r--r-- 59,942 bytes parent folder | download
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
/*
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 * Copyright (C) 2009 - DIGITEO - Antoine ELIAS
 *
 * This file must be used under the terms of the CeCILL.
 * This source file is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.  The terms
 * are also available at
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
 */

#ifndef __LIST_API__
#define __LIST_API__

#ifdef __cplusplus
extern "C" {
#endif

#include "doublecomplex.h"

/**********************/
/*   list functions   */
/**********************/

/**
 * Get the number of items in a list
 * @param[in] _piAddress list address
 * @param[out] _piNbItem return number of items
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getListItemNumber(void* _pvCtx, int* _piAddress, int* _piNbItem);

/**
 * Get the address of an item in a list
 * @param[in] _piAddress list address
 * @param[in] _iItemNum item number
 * @param[out] _piItemAddress return item address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getListItemAddress(void* _pvCtx, int* _piAddress, int _iItemNum, int** _piItemAddress);

/**
 * Get a list from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the retrieved list in the parent list
 * @param[out] _piAddress return list address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getListInList(void* _pvCtx, int* _piParent, int _iItemPos, int** _piAddress);

/**
 * Get a tlist from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the retrieved tlist in the parent list
 * @param[out] _piAddress return tlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getTListInList(void* _pvCtx, int* _piParent, int _iItemPos, int** _piAddress);

/**
 * Get an mlist from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the retrieved mlist in the parent list
 * @param[out] _piAddress return mlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMListInList(void* _pvCtx, int* _piParent, int _iItemPos, int** _piAddress);

/**
 * Get a list from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the retrieved list in the parent list
 * @param[out] _piAddress return list address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getListInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int** _piAddress);

/**
 * Get a tlist from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the retrieved tlist in the parent list
 * @param[out] _piAddress return tlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getTListInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int** _piAddress);

/**
 * Get an mlist from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the retrieved mlist in the parent list
 * @param[out] _piAddress return mlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMListInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int** _piAddress);

/**
 * Create a list
 * @param[in] _iVar variable number
 * @param[in] _iNbItem number of items
 * @param[out] _piAddress return list address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createList(void* _pvCtx, int _iVar, int _iNbItem, int** _piAddress);

/**
 * Create a tlist
 * @param[in] _iVar variable number
 * @param[in] _iNbItem number of items
 * @param[out] _piAddress return tlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createTList(void* _pvCtx, int _iVar, int _iNbItem, int** _piAddress);

/**
 * Create an mlist
 * @param[in] _iVar variable number
 * @param[in] _iNbItem number of items
 * @param[out] _piAddress return mlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMList(void* _pvCtx, int _iVar, int _iNbItem, int** _piAddress);

/**
 * Create a named list
 * @param[in] _pstName variable name
 * @param[in] _iNbItem number of items
 * @param[out] _piAddress return list address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createNamedList(void* _pvCtx, const char* _pstName, int _iNbItem, int** _piAddress);

/**
 * Create a named tlist
 * @param[in] _pstName variable name
 * @param[in] _iNbItem number of items
 * @param[out] _piAddress return tlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createNamedTList(void* _pvCtx, const char* _pstName, int _iNbItem, int** _piAddress);

/**
 * Create a named mlist
 * @param[in] _pstName variable name
 * @param[in] _iNbItem number of items
 * @param[out] _piAddress return mlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createNamedMList(void* _pvCtx, const char* _pstName, int _iNbItem, int** _piAddress);

/**
 * Read a named list
 * @param[in] _pstName variable name
 * @param[out] _piNbItem return number of items
 * @param[out] _piAddress return list address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readNamedList(void* _pvCtx, const char* _pstName, int* _piNbItem, int** _piAddress);

/**
 * Read a named tlist
 * @param[in] _pstName variable name
 * @param[out] _piNbItem return number of items
 * @param[out] _piAddress return tlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readNamedTList(void* _pvCtx, const char* _pstName, int* _piNbItem, int** _piAddress);

/**
 * Read a named mlist
 * @param[in] _pstName variable name
 * @param[out] _piNbItem return number of items
 * @param[out] _piAddress return mlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readNamedMList(void* _pvCtx, const char* _pstName, int* _piNbItem, int** _piAddress);

/**
 * Create a list in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created list in the parent list
 * @param[in] _iNbItem number of items in the created list
 * @param[out] _piAddress return new list address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createListInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iNbItem, int** _piAddress);

/**
 * Create a tlist in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created tlist in the parent list
 * @param[in] _iNbItem number of items in the created tlist
 * @param[out] _piAddress return new tlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createTListInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iNbItem, int** _piAddress);

/**
 * Create an mlist in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created mlist in the parent list
 * @param[in] _iNbItem number of items in the created mlist
 * @param[out] _piAddress return new mlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMListInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iNbItem, int** _piAddress);

/**
 * Create a list in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created list in the parent list
 * @param[in] _iNbItem number of items in the created list
 * @param[out] _piAddress return new list address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createListInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iNbItem, int** _piAddress);

/**
 * Create a tlist in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created tlist in the parent list
 * @param[in] _iNbItem number of items in the created tlist
 * @param[out] _piAddress return new tlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createTListInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iNbItem, int** _piAddress);

/**
 * Create an mlist in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created mlist in the parent list
 * @param[in] _iNbItem number of items in the created mlist
 * @param[out] _piAddress return new mlist address
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMListInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iNbItem, int** _piAddress);

/*********************************
 * void and undefined functions  *
 *********************************/

/**
 * Create a void item in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created mlist in the parent list
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createVoidInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos);

/**
 * Create a undefined item in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos position of the created mlist in the parent list
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createUndefinedInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos);

/*********************
 * double functions  *
 *********************/

/**
 * Get double variable data from a list item
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pdblReal return pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfDoubleInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, double** _pdblReal);

/**
 * Get complex double variable data from a list item
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pdblReal return pointer to real parts
 * @param[out] _pdblImg return pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getComplexMatrixOfDoubleInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, double** _pdblReal, double** _pdblImg);

/**
 * Allocate a double variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _pdblReal return pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfDoubleInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, double** _pdblReal);

/**
 * Allocate a complex double variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _pdblReal return pointer to real parts
 * @param[out] _pdblImg return pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocComplexMatrixOfDoubleInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, double** _pdblReal, double** _pdblImg);

/**
 * Create a double variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pdblReal pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfDoubleInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const double* _pdblReal);

/**
 * Create a complex double variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pdblReal pointer to real parts
 * @param[in] _pdblImg pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexMatrixOfDoubleInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const double* _pdblReal, const double* _pdblImg);

/**
 * Create a complex double variable (Z-representation) in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pdblData pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexZMatrixOfDoubleInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const doublecomplex* _pdblData);

/**
 * Create a double variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pdblReal pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfDoubleInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const double* _pdblReal);

/**
 * Create a complex double variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pdblReal pointer to real parts
 * @param[in] _pdblImg pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexMatrixOfDoubleInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const double* _pdblReal, const double* _pdblImg);

/**
 * Create a complex double variable (Z-representation) in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pdblData pointer to complex data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexZMatrixOfDoubleInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const doublecomplex* _pdblData);

/**
 * Read a double variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pdblReal return pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfDoubleInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, double* _pdblReal);

/**
 * Read a complex double variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pdblReal return pointer to real parts
 * @param[out] _pdblImg return pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readComplexMatrixOfDoubleInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, double* _pdblReal, double* _pdblImg);

/*********************
 * strings functions *
 *********************/

/**
 * Get a string variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piLength return strings length
 * @param[out] _pstStrings return array of char
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfStringInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piLength, char** _pstStrings);

/**
 * Create a string variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pstStrings array of null-terminated strings
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfStringInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const char* const* _pstStrings);

/**
 * Create a string variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pstStrings array of null-terminated strings
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfStringInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const char* const* _pstStrings);

/**
 * Read a string variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pstStrings return array of null-terminated strings
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfStringInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piLength, char** _pstStrings);

/*********************
 * boolean functions *
 *********************/

/**
 * Get a boolean variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piBool return pointer to boolean data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfBooleanInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int** _piBool);

/**
 * Allocate a boolean variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _piBool return pointer to boolean data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfBooleanInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, int** _piBool);

/**
 * Create a boolean variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piBool pointer to boolean data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfBooleanInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const int* _piBool);

/**
 * Create a boolean variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piBool pointer to boolean data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfBooleanInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const int* _piBool);

/**
 * Read a boolean variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piBool pointer to boolean data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfBooleanInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piBool);

/*************************
 * polynomials functions *
 *************************/

/**
 * Get a polynomial variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbCoef return number of polynomial coefficients for each element
 * @param[out] _pdblReal return pointer to real polynomials coefficients
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfPolyInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbCoef, double** _pdblReal);

/**
 * Get a complex polynomial variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbCoef return number of polynomial coefficients for each element
 * @param[out] _pdblReal return pointer to real polynomials coefficients
 * @param[out] _pdblImg return pointer to imaginary polynomials coefficients
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getComplexMatrixOfPolyInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbCoef, double** _pdblReal, double** _pdblImg);

/**
 * Create a polynomial variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _pstVarName polynomial variable name
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piNbCoef number of polynomial coefficients for each element
 * @param[in] _pdblReal pointer to real polynomial coefficients
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfPolyInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, char* _pstVarName, int _iRows, int _iCols, const int* _piNbCoef, const double* const* _pdblReal);

/**
 * Create a complex polynomial variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _pstVarName polynomial variable name
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piNbCoef number of polynomial coefficients for each element
 * @param[in] _pdblReal pointer to real polynomial coefficients
 * @param[in] _pdblImg pointer to imaginary polynomial coefficients
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexMatrixOfPolyInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, char* _pstVarName, int _iRows, int _iCols, const int* _piNbCoef, const double* const* _pdblReal, const double* const* _pdblImg);

/**
 * Read a polynomial variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbCoef return number of polynomial coefficients for each element
 * @param[out] _pdblReal return pointer to real polynomial coefficients
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfPolyInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbCoef, double** _pdblReal);

/**
 * Read a complex polynomial variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbCoef return number of polynomial coefficients for each element
 * @param[out] _pdblReal return pointer to real polynomial coefficients
 * @param[out] _pdblImg return pointer to imaginary polynomial coefficients
* @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readComplexMatrixOfPolyInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbCoef, double** _pdblReal, double** _pdblImg);

/**
 * Create a polynomial variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _pstVarName polynomial variable name
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piNbCoef number of polynomial coefficients for each element
 * @param[in] _pdblReal pointer to real polynomial coefficients
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfPolyInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, char* _pstVarName, int _iRows, int _iCols, const int* _piNbCoef, const double* const* _pdblReal);

/**
 * Create a complex polynomial variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _pstVarName polynomial variable name
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piNbCoef number of polynomial coefficients for each element
 * @param[in] _pdblReal pointer to real polynomial coefficients
 * @param[in] _pdblImg pointer to imaginary polynomial coefficients
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexMatrixOfPolyInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, char* _pstVarName, int _iRows, int _iCols, const int* _piNbCoef, const double* const* _pdblReal, const double* const* _pdblImg);

/*********************
 * integer functions *
 *********************/

/**
 * Create an 8-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pcData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger8InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const char* _pcData);

/**
 * Create an 8-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pucData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger8InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned char* _pucData);

/**
 * Create a 16-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _psData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger16InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const short* _psData);

/**
 * Create a 16-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pusData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger16InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned short* _pusData);

/**
 * Create a 32-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger32InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const int* _piData);

/**
 * Create a 32-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _puiData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger32InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned int* _puiData);

#ifdef __SCILAB_INT64__

/**
 * Create a 64-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pllData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger64InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const long long* _pllData);

/**
 * Create a 64-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pullData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger64InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned long long* _pullData);

#endif

/**
 * Allocate an 8-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _pcData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfInteger8InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, char** _pcData);

/**
 * Allocate an 8-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _pucData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfUnsignedInteger8InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, unsigned char** _pucData);

/**
 * Allocate a 16-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _psData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfInteger16InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, short** _psData);

/**
 * Allocate a 16-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _pusData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfUnsignedInteger16InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, unsigned short** _pusData);

/**
 * Allocate a 32-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _piData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfInteger32InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, int** _piData);

/**
 * Allocate a 32-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _puiData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfUnsignedInteger32InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, unsigned int** _puiData);

#ifdef __SCILAB_INT64__

/**
 * Allocate a 64-bit signed integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _pllData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfInteger64InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, long long** _pllData);

/**
 * Allocate a 64-bit unsigned integer variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[out] _pullData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr allocMatrixOfUnsignedInteger64InList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, unsigned long long** _pullData);

#endif

/**
 * Get an 8-bit signed integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pcData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfInteger8InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, char** _pcData);

/**
 * Get an 8-bit unsigned integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pucData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfUnsignedInteger8InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned char** _pucData);

/**
 * Get a 16-bit signed integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _psData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfInteger16InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, short** _psData);

/**
 * Get a 16-bit unsigned integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pusData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfUnsignedInteger16InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned short** _pusData);

/**
 * Get a 32-bit signed integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfInteger32InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int** _piData);

/**
 * Get a 32-bit unsigned integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _puiData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfUnsignedInteger32InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned int** _puiData);

#ifdef __SCILAB_INT64__

/**
 * Get a 64-bit signed integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pllData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfInteger64InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, long long** _pllData);

/**
 * Get a 64-bit unsigned integer variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pllData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getMatrixOfUnsignedInteger64InList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned long long** _pullData);

#endif

/**
 * Create an 8-bit signed integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pcData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger8InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const char* _pcData);

/**
 * Create an 8-bit unsigned integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pucData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger8InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned char* _pucData);

/**
 * Create a 16-bit signed integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _psData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger16InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const short* _psData);

/**
 * Create a 16-bit unsigned integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pusData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger16InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned short* _pusData);

/**
 * Create a 32-bit signed integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _piData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger32InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const int* _piData);

/**
 * Create a 32-bit unsigned integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _puiData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger32InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned int* _puiData);

#ifdef __SCILAB_INT64__

/**
 * Create a 64-bit signed integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pllData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfInteger64InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const long long* _pllData);

/**
 * Create a 64-bit unsigned integer variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _pullData pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createMatrixOfUnsignedInteger64InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, const unsigned long long* _pullData);
#endif

/**
 * Read an 8-bit signed integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pcData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfIntger8InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, char* _pcData);

/**
 * Read an 8-bit unsigned integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pucData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfUnsignedInteger8InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned char* _pucData);

/**
 * Read a 16-bit signed integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _psData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfIntger16InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, short* _psData);

/**
 * Read a 16-bit unsigned integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _pusData return pointert to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfUnsignedInteger16InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned short* _pusData);

/**
 * Read a 32-bit signed integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfIntger32InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piData);

/**
 * Read a 32-bit unsigned integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _puiData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfUnsignedInteger32InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned int* _puiData);

#ifdef __SCILAB_INT64__

/**
 * Read a 64-bit signed integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows number of rows
 * @param[out] _piCols number of columns
 * @param[out] _pllData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfIntger64InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, long long* _pllData);

/**
 * Read a 64-bit unsigned integer variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows number of rows
 * @param[out] _piCols number of columns
 * @param[out] _pullData return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readMatrixOfUnsignedInteger64InNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, unsigned long long* _pullData);
#endif

/********************
 * sparse functions *
 ********************/

/**
 * Create a double sparse variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _iNbItem number of items
 * @param[in] _piNbItemRow number of items for each row
 * @param[in] _piColPos array of item column positions ( 1 indexed )
 * @param[in] _pdblReal pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createSparseMatrixInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, int _iNbItem, const int* _piNbItemRow, const int* _piColPos, const double* _pdblReal);

/**
 * Create a complex sparse variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _iNbItem number of items
 * @param[in] _piNbItemRow number of items for each row
 * @param[in] _piColPos array of item column positions ( 1 indexed )
 * @param[in] _pdblReal pointer to real parts
 * @param[in] _pdblImg pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexSparseMatrixInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, int _iNbItem, const int* _piNbItemRow, const int* _piColPos, const double* _pdblReal, const double* _pdblImg);

/**
 * Create a double sparse variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _iNbItem number of items
 * @param[in] _piNbItemRow number of items for each row
 * @param[in] _piColPos array of item column positions ( 1 indexed )
 * @param[in] _pdblReal pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createSparseMatrixInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, int _iNbItem, const int* _piNbItemRow, const int* _piColPos, const double* _pdblReal);

/**
 * Create a complex sparse variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _iNbItem number of items
 * @param[in] _piNbItemRow number of items for each row
 * @param[in] _piColPos array of item column positions ( 1 indexed )
 * @param[in] _pdblReal pointer to real parts
 * @param[in] _pdblImg pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createComplexSparseMatrixInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, int _iNbItem, const int* _piNbItemRow, const int* _piColPos, const double* _pdblReal, const double* _pdblImg);

/**
 * Get a double sparse variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbItem return number of items
 * @param[out] _piNbItemRow return number of items for each row
 * @param[out] _piColPos return array of item column positions ( 1 indexed )
 * @param[out] _pdblReal return pointer to data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getSparseMatrixInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbItem, int** _piNbItemRow, int** _piColPos, double** _pdblReal);

/**
 * Get a complex sparse variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbItem return number of items
 * @param[out] _piNbItemRow return number of items for each row
 * @param[out] _piColPos return array of item column positions ( 1 indexed )
 * @param[out] _pdblReal return pointer to real parts
 * @param[out] _pdblImg return pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getComplexSparseMatrixInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbItem, int** _piNbItemRow, int** _piColPos, double** _pdblReal, double** _pdblImg);

/**
 * Read a double sparse variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbItem return number of item
 * @param[out] _piNbItemRow return number of items for each row
 * @param[out] _piColPos return array of item column positions ( 1 indexed )
 * @param[out] _pdblReal return pointer to real data
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readSparseMatrixInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbItem, int* _piNbItemRow, int* _piColPos, double* _pdblReal);

/**
 * Read a complex sparse variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbItem return number of items
 * @param[out] _piNbItemRow return number of items for each row
 * @param[out] _piColPos return array of item column positions ( 1 indexed )
 * @param[out] _pdblReal return pointer to real parts
 * @param[out] _pdblImg return pointer to imaginary parts
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readComplexSparseMatrixInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbItem, int* _piNbItemRow, int* _piColPos, double* _pdblReal, double* _pdblImg);


/****************************
 * boolean sparse functions *
 ****************************/

/**
 * Create a boolean sparse variable in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _iNbItem number of items
 * @param[in] _piNbItemRow number of items for each row
 * @param[in] _piColPos array of column positions of "true" elements ( 1 indexed )
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createBooleanSparseMatrixInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, int _iRows, int _iCols, int _iNbItem, const int* _piNbItemRow, const int* _piColPos);

/**
 * Create a boolean sparse variable in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _iRows number of rows
 * @param[in] _iCols number of columns
 * @param[in] _iNbItem number of items
 * @param[in] _piNbItemRow number of items for each row
 * @param[in] _piColPos array of column positions of "true" elements ( 1 indexed )
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createBooleanSparseMatrixInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int _iRows, int _iCols, int _iNbItem, const int* _piNbItemRow, const int* _piColPos);

/**
 * Get a boolean sparse variable from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbItem return number of items
 * @param[out] _piNbItemRow return number of items for each row
 * @param[out] _piColPos return array of column positions of "true" elements ( 1 indexed )
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getBooleanSparseMatrixInList(void* _pvCtx, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbItem, int** _piNbItemRow, int** _piColPos);

/**
 * Read a boolean sparse variable from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _piRows return number of rows
 * @param[out] _piCols return number of columns
 * @param[out] _piNbItem return number of items
 * @param[out] _piNbItemRow number of items for each row
 * @param[out] _piColPos return array of column positions of "true" elements ( 1 indexed )
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readBooleanSparseMatrixInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, int* _piRows, int* _piCols, int* _piNbItem, int* _piNbItemRow, int* _piColPos);

/*********************
 * pointer functions *
 *********************/

/**
 * Get a pointer from a list
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _pvPtr return pointer value
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr getPointerInList(void* _pvCtx, int* _piParent, int _iItemPos, void** _pvPtr);

/**
 * Create a pointer in a list
 * @param[in] _iVar variable number
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _pvPtr return pointer value
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createPointerInList(void* _pvCtx, int _iVar, int* _piParent, int _iItemPos, void* _pvPtr);

/**
 * Read a pointer from a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[out] _pvPtr return pointer value
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr readPointerInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, void** _pvPtr);

/**
 * Create a pointer in a named list
 * @param[in] _pstName variable name
 * @param[in] _piParent pointer to the parent
 * @param[in] _iItemPos item position in the parent list
 * @param[in] _pvPtr pointer value
 * @return if the operation succeeded ( 0 ) or not ( !0 )
 */
SciErr createPointerInNamedList(void* _pvCtx, const char* _pstName, int* _piParent, int _iItemPos, void* _pvPtr);

#ifdef __cplusplus
}
#endif
#endif /* __LIST_API__ */