-
Notifications
You must be signed in to change notification settings - Fork 129
/
MexValidation.h
executable file
·2376 lines (2148 loc) · 73.4 KB
/
MexValidation.h
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
/* This is a suite of C and C++ functions for type checking inputs to mex
* files and performing other helper actions when interfacing Matlab and C
* or C++ code.
*
*The following functions that can be used in both C and C++ programs:
*checkRealArray Gives an error if an array is not real, has
* more than two indices, or is empty.
*checkRealDoubleArray Gives an error if an array is not composed of
* real doubles, has more than two indices, or is
* empty.
*checkDoubleArray Gives an error if an array is not composed of
* doubles, has more than two indices, or is
* empty.
*checkRealDoubleHypermatrix This is the same as checkRealDoubleArray
* except it does not throw an error if the matrix
* has more than two indices.
*checkRealInt32Array Gives an error if an array is not composed of
* real int32_t values, has more than two indices,
* or is empty.
*checkInt32Array Gives an error if an array is not composed of
* int32_t values, has more than two indices, or
* is empty.
*verifySizeReal Verify that a Matlab matrix is 2D, has the
* desired dimensions, and is real.
*convert2DReal2DoubleMat Convert a Matlab matrix of real values for
* various Matlab data types to a Matlab matrix of
* doubles. The returned Matrix should be freed
* with mxDestroyArray. The input matrix is not
* modified.
*convert2DReal2SignedIntMat Convert a Matlab matrix of real values for
* various Matlab data types to a Matlab matrix of
* ints. The returned Matrix should be freed
* with mxDestroyArray. the input matrix is not
* modified.
*convert2DReal2UnsignedIntMat Convert a Matlab matrix of real values for
* various Matlab data types to a Matlab matrix of
* unsigned ints. The returned Matrix should be
* freed with mxDestroyArray. the input matrix is
* not modified.
*convert2DReal2SignedSizeMat Convert a Matlab matrix of real values for
* various Matlab data types to a Matlab matrix of
* ptrdiff_t. The returned Matrix should be
* freed with mxDestroyArray. the input matrix is
* not modified.
*convert2DReal2UnsignedSizeMat Convert a Matlab matrix of real values for
* various Matlab data types to a Matlab matrix of
* size_t. The returned Matrix should be
* freed with mxDestroyArray. the input matrix is
* not modified.
*getIntFromMatlab Turns a passed Matlab data type into a real
* integer. Provides an error if the Matlab data
* is of a type that can not be transformed into
* an integer or if it is complex.
*getSizeTFromMatlab Turns a passed Matlab data type into a
* positive, real size_t integer value. Provides
* an error if the Matlab data is of a type that
* can not be transformed into an size_t value or
* if it is negative or complex.
*getPtrDiffTFromMatlab Turns a passed Matlab data type into a real
* ptrdiff_t integer value. Provides
* an error if the Matlab data is of a type that
* can not be transformed into an ptrdiff_t value.
*copySizeTArrayFromMatlab Returns a copy of an array from Matlab as an
* array of size_t values and indicates the length
* of the array by modifying an input parameter.
* The array is allocated using mxAlloc and thus
* should be freed using mxFree.
*copyPtrDiffTArrayFromMatlab Returns a copy of an array from Matlab as an
* array of ptrdiff_t values and indicates the
* length of the array by modifying an input
* parameter. The array is allocated using
* mxAlloc and thus should be freed using mxFree.
*copyBoolArrayFromMatlab Returns a copy of an array from Matlab
* converted into boolean variables and indicates
* the length of the array by modifying an input
* parameter. The array is allocated using mxAlloc
* and thus should be freed using mxFree.
*getDoubleFromMatlab Turns a passed Matlab data type into a real
* double variable. Provides an error if the
* Matlab data is of a type that can not be
* transformed into a double or if it is
* complex.
*getBoolFromMatlab Turns a passed Matlab data type into a real
* boolean variable. Provides an error if the
* Matlab data is of a type that can not be
* transformed into a boolean or if it is
* complex.
*getInt32FromMatlab Turns a passed Matlab data type into an real
* int32_t variable. Provides an error if the
* Matlab data is of a type that can not be
* transformed into an int32_t or if it is
* complex.
*doubleMat2Matlab Convert an array or matrix of doubles into
* a matrix to be returned to Matlab.
*floatMat2MatlabDoubles Convert an array or matrix of single-precision
* floats into a matrix to be returned to Matlab
* as double floating point numbers (the default
* data format in Matlab).
*intMat2MatlabDoubles Convert an array or matrix of integers into
* a matrix to be returned to Matlab as double
* floating point numbers (the default data format
* in Matlab).
*int32Mat2MatlabDoubles Convert an array or matrix of int32_T values
* into a matrix to be returned to Matlab as
* double floating point numbers (the default data
* format in Matlab).
*sizeTMat2MatlabDoubles Convert an array or matrix of size_t values
* into a matrix to be returned to Matlab as
* double floating point numbers (the default data
* format in Matlab).
*ptrDiffTMat2MatlabDoubles Convert an array or matrix of ptrdiff_t values
* into a matrix to be returned to Matlab as
* double floating point numbers (the default data
* format in Matlab).
*boolMat2Matlab Convert an array or matrix of bool values into
* a matrix to be returned to Matlab (as type
* mxLogical).
*allocUnsignedSizeMatInMatlab Allocate a matrix for holding size_t values
* that can be used in Matlab.
*allocSignedSizeMatInMatlab Allocate a matrix for holding ptrdiff_t values
* that can be used in Matlab.
*allocUnsignedCharMatInMatlab Allocate a matrix for holding unsigned char
* values that can be used in Matlab.
*allocUnsignedIntMatInMatlab Allocate a matrix for holding unsigned int
* values that can be used in Matlab.
*allocSignedIntMatInMatlab Allocate a matrix for holding int values
* that can be used in Matlab.
*unsignedSizeMat2Matlab Convert an array or matrix of size_t values
* into a matrix to be returned by Matlab.
*unsignedCharMat2Matlab Convert an array or matrix of unsigned char
* values into a matrix to be returned by Matlab.
*signedSizeMat2Matlab Convert an array or matrix of ptrdiff_t values
* into a matrix to be returned to Matlab.
*getScalarMatlabClassConst Get a double scalar constant that is defined in
* a Matlab class.
*pointerIsAligned Determine whether a pointer is aligned to a
* certain number of bytes. This is useful if one
* wishes to use SIMD instructions in the
* processor,because Matlab does not specify that
* matrices will maintain a 16-byte (or other)
* alignment, which is generally necessary for
* such instructions to be particularly fast.
*
*The following functions are for use when interfacing C and C++ programs:
*ptr2Matlab Convert a pointer to a class instance into a
* data type that can be returned to Matlab so
* that the class can be used during another call
* to a mex function.
*Matlab2Ptr Convert a Matlab value obtained from ptr2Matlab
* back to a pointer to a C++ class.
*
*The following functions are only available in C++ as they use template
*classes:
*mat2MatlabDoubles Convert an array or matrix of some type to a
* matrix of doubles to be returned in Matlab. The
* components of the array must be convertible to
* doubles using the static_cast function. The
* use is the same as the type-specific functions
* such as intMat2MatlabDoubles.
*getComplexDoubleFromMatlab Given a scalar numeric data types in Matlab,
* return a complex<double> with the real and
* imaginary parts of the input. If the input was
* purely imaginary or real, then the
* corresponding part of the return value will be
* zero. This function provides an error if the
* data type is not a type that can be converted
* to a double or is not scalar.
*
*September 2020 David F. Crouse, Naval Research Laboratory, Washington D.C.
*/
/*(UNCLASSIFIED) DISTRIBUTION STATEMENT A. Approved for public release.*/
#ifndef MEXHELP
#define MEXHELP
#include "matrix.h"
#include "mex.h"
#ifdef __cplusplus
//For memcpy
#include <cstring>
//Defines the size_t and ptrdiff_t types
#include <cstddef>
#include <cstdint>
//For functions to import comples values.
#include <complex>
#else
//For memcpy
#include <string.h>
//Defines the size_t and ptrdiff_t types
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
//This is needed for the bool type to be defined in C.
//C99 has stdbool, earlier versions do not.
#if __STDC_VERSION__>=199901L
//If using *NIX or Mac OS X, the functions should be defined without
//anything extra in math.h
#include<math.h>
#define fMax(a,b) fmax(a,b)
#define fMin(a,b) fmin(a,b)
#define isFinite(x) isfinite(x)
#define copySign(a,b) copysign(a,b)
#else
//These functions are defined in the C standard, but do not seem to be
//supported by Microsoft's compiler, so they are defined here with
//different capitalization.
double fMax(double a,double b) {
//Defined in the C99 standard, but not supported by Microsoft.
if(a>b) {
return a;
}
else {
return b;
}
}
double fMin(double a,double b) {
//Defined in the C99 standard, but not supported by Microsoft.
if(a>b) {
return b;
}
else {
return a;
}
}
//Microsoft does not declare isfinite and copysign (in the C99 standard),
//but it does declare _finite and _copysign in float.h for some
//inexplicable reason.
#include <float.h>
#define isFinite(x)_finite(x)
#define copySign(a,b)_copysign(a,b)
#endif
#endif
//void checkRealArray(const mxArray * const val);
//void checkRealDoubleArray(const mxArray * const val);
//void checkDoubleArray(const mxArray * const val);
//void checkRealDoubleHypermatrix(const mxArray * const val);
//void checkRealInt32Array(const mxArray * const val);
//void checkInt32Array(const mxArray * const val);
//void verifySizeReal(const size_t M, const size_t N, const mxArray * const val);
//mxArray *convert2DReal2DoubleMat(const mxArray * const val);
//mxArray *convert2DReal2SignedIntMat(const mxArray * const val);
//mxArray *convert2DReal2UnsignedIntMat(const mxArray * const val);
//mxArray *convert2DReal2SignedSizeMat(const mxArray * const val);
//mxArray *convert2DReal2UnsignedSizeMat(const mxArray * const val);
//int getIntFromMatlab(const mxArray * const val);
//size_t getSizeTFromMatlab(const mxArray * const val);
//ptrdiff_t getPtrDiffTFromMatlab(const mxArray * const val);
//size_t *copySizeTArrayFromMatlab(const mxArray * const val, size_t *arrayLen);
//ptrdiff_t *copyPtrDiffTArrayFromMatlab(const mxArray * const val, size_t *arrayLen);
//bool *copyBoolArrayFromMatlab(const mxArray * const val, size_t *arrayLen);
//double getDoubleFromMatlab(const mxArray * const val);
//bool getBoolFromMatlab(const mxArray * const val);
//int32_t getInt32FromMatlab(const mxArray * const val);
//mxArray *doubleMat2Matlab(const double * const arr,const size_t numRow, const size_t numCol);
//mxArray *floatMat2MatlabDoubles(const float * const arr,const size_t numRow, const size_t numCol);
//mxArray *intMat2MatlabDoubles(const int * const arr,const size_t numRow, const size_t numCol);
//mxArray *sizeTMat2MatlabDoubles(const size_t * const arr,const size_t numRow, const size_t numCol);
//mxArray *ptrDiffTMat2MatlabDoubles(const ptrdiff_t * const arr,const size_t numRow, const size_t numCol);
//mxArray *boolMat2Matlab(const bool * const arr,const size_t numRow, const size_t numCol);
//mxArray *allocUnsignedSizeMatInMatlab(const size_t numRow, const size_t numCol);
//mxArray *allocSignedSizeMatInMatlab(const size_t numRow, const size_t numCol);
//mxArray *allocUnsignedCharMatInMatlab(const size_t numRow, const size_t numCol);
//mxArray *allocUnsignedIntMatInMatlab(const size_t numRow, const size_t numCol);
//mxArray *allocSignedIntMatInMatlab(const size_t numRow, const size_t numCol);
//mxArray *unsignedSizeMat2Matlab(const size_t * const arr, const size_t numRow, const size_t numCol);
//mxArray *unsignedCharMat2Matlab(const unsigned char * const arr, const size_t numRow, const size_t numCol);
//mxArray *signedSizeMat2Matlab(const ptrdiff_t * const arr, const size_t numRow, const size_t numCol);
//double getScalarMatlabClassConst(const char * const className, const char * const constName);
//bool pointerIsAligned(const void *pointer, const size_t byteCount);
#ifdef __cplusplus
//One cannot use prototypes for template functions. The template C++-only
//functions are full implementations.
std::complex <double> getComplexDoubleFromMatlab(const mxArray * const val);
#endif
void checkRealArray(const mxArray * const val) {
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of doubles has complex components.");
}
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix is empty.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
}
void checkDoubleArray(const mxArray * const val) {
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix of doubles is empty.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
if(mxGetClassID(val)!=mxDOUBLE_CLASS) {
mexErrMsgTxt("A parameter that should be a real double is of a different data type.");
}
}
void checkRealDoubleArray(const mxArray * const val){
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of doubles has complex components.");
}
checkDoubleArray(val);
}
void checkRealDoubleHypermatrix(const mxArray * const val){
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of doubles has complex components.");
}
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix of doubles is empty.");
}
if(mxGetNumberOfDimensions(val)<1){
mexErrMsgTxt("A parameter has too few dimensions.");
}
if(mxGetClassID(val)!=mxDOUBLE_CLASS) {
mexErrMsgTxt("A parameter that should be a real double is of a different data type.");
}
}
void checkInt32Array(const mxArray * const val) {
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix of int32_t values is empty.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
if(mxGetClassID(val)!=mxINT32_CLASS) {
mexErrMsgTxt("A parameter that should be int32_t values is of a different data type.");
}
}
void checkRealInt32Array(const mxArray * const val) {
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of int32_t values has complex components.");
}
checkInt32Array(val);
}
void verifySizeReal(const size_t M, const size_t N, const mxArray * const val) {
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix has complex components.");
}
if(mxGetM(val)!=M||mxGetN(val)!=N) {
mexErrMsgTxt("A parameter has the wrong dimensionality.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
}
mxArray *convert2DReal2DoubleMat(const mxArray * const val) {
mxArray *retMat;
double *retData;
size_t M,N,numElements,i;
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of doubles has complex components.");
}
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix of doubles is empty.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
M=mxGetM(val);
N=mxGetN(val);
numElements=M*N;
retMat=mxCreateDoubleMatrix(M,N,mxREAL);
retData=mxGetDoubles(retMat);
switch(mxGetClassID(val)){
case mxCHAR_CLASS:
{
mxChar *data=mxGetChars(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxLOGICAL_CLASS:
{
mxLogical *data=mxGetLogicals(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxDOUBLE_CLASS:
{
double *data=mxGetDoubles(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxSINGLE_CLASS:
{
float *data=mxGetSingles(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxINT8_CLASS:
{
int8_T *data=mxGetInt8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxUINT8_CLASS:
{
uint8_T *data=mxGetUint8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxINT16_CLASS:
{
int16_T *data=mxGetInt16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxUINT16_CLASS:
{
uint16_T *data=mxGetUint16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxINT32_CLASS:
{
int32_T *data=mxGetInt32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxUINT32_CLASS:
{
uint32_T *data=mxGetUint32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxINT64_CLASS:
{
int64_T *data=mxGetInt64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxUINT64_CLASS:
{
uint64_T *data=mxGetUint64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(double)data[i];
}
break;
}
case mxUNKNOWN_CLASS:
case mxCELL_CLASS:
case mxSTRUCT_CLASS:
case mxVOID_CLASS:
case mxFUNCTION_CLASS:
case mxOPAQUE_CLASS:
case mxOBJECT_CLASS:
default:
mexErrMsgTxt("A parameter is of a data type that cannot be used.");
}
return retMat;
}
mxArray *allocSignedIntMatInMatlab(const size_t numRow, const size_t numCol){
mxArray *retMat=NULL;
switch(sizeof(int)) {
case 4:
retMat=mxCreateNumericMatrix(numRow,numCol,mxINT32_CLASS,mxREAL);
break;
case 8:
retMat=mxCreateNumericMatrix(numRow,numCol,mxINT64_CLASS,mxREAL);
break;
default:
mexErrMsgTxt("The integer size of this computer is neither 64 nor 32 bit. Thus, the Matlab data type for pointer conversion could not be determined.");
}
return retMat;
}
mxArray *convert2DReal2SignedIntMat(const mxArray * const val) {
mxArray *retMat;
int *retData;
size_t M,N,numElements,i;
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of doubles has complex components.");
}
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix of doubles is empty.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
M=mxGetM(val);
N=mxGetN(val);
numElements=M*N;
retMat=allocSignedIntMatInMatlab(M,N);
if(sizeof(int)==4) {//32 bit
retData=(int*)mxGetInt32s(retMat);
} else {//64 bit
retData=(int*)mxGetInt64s(retMat);
}
switch(mxGetClassID(val)){
case mxCHAR_CLASS:
{
mxChar *data=mxGetChars(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxLOGICAL_CLASS:
{
mxLogical *data=mxGetLogicals(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxDOUBLE_CLASS:
{
double *data=mxGetDoubles(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxSINGLE_CLASS:
{
float *data=mxGetSingles(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxINT8_CLASS:
{
int8_T *data=mxGetInt8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxUINT8_CLASS:
{
uint8_T *data=mxGetUint8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxINT16_CLASS:
{
int16_T *data=mxGetInt16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxUINT16_CLASS:
{
uint16_T *data=mxGetUint16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxINT32_CLASS:
{
int32_T *data=mxGetInt32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxUINT32_CLASS:
{
uint32_T *data=mxGetUint32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxINT64_CLASS:
{
int64_T *data=mxGetInt64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxUINT64_CLASS:
{
uint64_T *data=mxGetUint64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(int)data[i];
}
break;
}
case mxUNKNOWN_CLASS:
case mxCELL_CLASS:
case mxSTRUCT_CLASS:
case mxVOID_CLASS:
case mxFUNCTION_CLASS:
case mxOPAQUE_CLASS:
case mxOBJECT_CLASS:
default:
mexErrMsgTxt("A parameter is of a data type that can not be used.");
}
return retMat;
}
mxArray *allocUnsignedIntMatInMatlab(const size_t numRow, const size_t numCol) {
mxArray *retMat=NULL;
switch(sizeof(unsigned int)) {
case 4:
retMat = mxCreateNumericMatrix(numRow,numCol,mxUINT32_CLASS,mxREAL);
break;
case 8:
retMat = mxCreateNumericMatrix(numRow,numCol,mxUINT64_CLASS,mxREAL);
break;
default:
mexErrMsgTxt("The integer size of this computer is neither 64 nor 32 bit. Thus, the Matlab data type for pointer conversion could not be determined.");
}
return retMat;
}
mxArray *convert2DReal2UnsignedIntMat(const mxArray * const val) {
mxArray *retMat;
unsigned int *retData;
size_t M,N,numElements,i;
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of doubles has complex components.");
}
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix of doubles is empty.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
M=mxGetM(val);
N=mxGetN(val);
numElements=M*N;
retMat=allocUnsignedIntMatInMatlab(M,N);
if(sizeof(unsigned int)==4) {//32 bit
retData=(unsigned int*)mxGetUint32s(retMat);
} else {//64 bit
retData=(unsigned int*)mxGetUint64s(retMat);
}
switch(mxGetClassID(val)){
case mxCHAR_CLASS:
{
mxChar *data=mxGetChars(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxLOGICAL_CLASS:
{
mxLogical *data=mxGetLogicals(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxDOUBLE_CLASS:
{
double *data=mxGetDoubles(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxSINGLE_CLASS:
{
float *data=mxGetSingles(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxINT8_CLASS:
{
int8_T *data=mxGetInt8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxUINT8_CLASS:
{
uint8_T *data=mxGetUint8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxINT16_CLASS:
{
int16_T *data=mxGetInt16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxUINT16_CLASS:
{
uint16_T *data=mxGetUint16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxINT32_CLASS:
{
int32_T *data=mxGetInt32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxUINT32_CLASS:
{
uint32_T *data=mxGetUint32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxINT64_CLASS:
{
int64_T *data=mxGetInt64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxUINT64_CLASS:
{
uint64_T *data=mxGetUint64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(unsigned int)data[i];
}
break;
}
case mxUNKNOWN_CLASS:
case mxCELL_CLASS:
case mxSTRUCT_CLASS:
case mxVOID_CLASS:
case mxFUNCTION_CLASS:
case mxOPAQUE_CLASS:
case mxOBJECT_CLASS:
default:
mexErrMsgTxt("A parameter is of a data type that can not be used.");
}
return retMat;
}
mxArray *allocSignedSizeMatInMatlab(const size_t numRow, const size_t numCol) {
mxArray *retMat=NULL;
switch(sizeof(ptrdiff_t)) {
case 4:
retMat = mxCreateNumericMatrix(numRow,numCol,mxINT32_CLASS,mxREAL);
break;
case 8:
retMat = mxCreateNumericMatrix(numRow,numCol,mxINT64_CLASS,mxREAL);
break;
default:
mexErrMsgTxt("The integer size of this computer is neither 64 nor 32 bit. Thus, the Matlab data type for pointer conversion could not be determined.");
}
return retMat;
}
mxArray *convert2DReal2SignedSizeMat(const mxArray * const val) {
mxArray *retMat;
ptrdiff_t *retData;
size_t M,N,numElements,i;
if(mxIsComplex(val)==true) {
mexErrMsgTxt("A parameter that should be real matrix of doubles has complex components.");
}
if(mxIsEmpty(val)) {
mexErrMsgTxt("A parameter that should be real matrix of doubles is empty.");
}
if(mxGetNumberOfDimensions(val)>2){
mexErrMsgTxt("A parameter has too many dimensions.");
}
M=mxGetM(val);
N=mxGetN(val);
numElements=M*N;
retMat=allocSignedSizeMatInMatlab(M,N);
if(sizeof(ptrdiff_t)==4) {//32 bit
retData=(ptrdiff_t*)mxGetInt32s(retMat);
} else {//64 bit
retData=(ptrdiff_t*)mxGetInt64s(retMat);
}
switch(mxGetClassID(val)){
case mxCHAR_CLASS:
{
mxChar *data=mxGetChars(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxLOGICAL_CLASS:
{
mxLogical *data=mxGetLogicals(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxDOUBLE_CLASS:
{
double *data=mxGetDoubles(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxSINGLE_CLASS:
{
float *data=mxGetSingles(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxINT8_CLASS:
{
int8_T *data=mxGetInt8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxUINT8_CLASS:
{
uint8_T *data=mxGetUint8s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxINT16_CLASS:
{
int16_T *data=mxGetInt16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxUINT16_CLASS:
{
uint16_T *data=mxGetUint16s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxINT32_CLASS:
{
int32_T *data=mxGetInt32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxUINT32_CLASS:
{
uint32_T *data=mxGetUint32s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxINT64_CLASS:
{
int64_T *data=mxGetInt64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxUINT64_CLASS:
{
uint64_T *data=mxGetUint64s(val);
for(i=0;i<numElements;i++) {
retData[i]=(ptrdiff_t)data[i];
}
break;
}
case mxUNKNOWN_CLASS:
case mxCELL_CLASS:
case mxSTRUCT_CLASS:
case mxVOID_CLASS:
case mxFUNCTION_CLASS:
case mxOPAQUE_CLASS:
case mxOBJECT_CLASS:
default:
mexErrMsgTxt("A parameter is of a data type that can not be used.");
}
return retMat;
}
mxArray *allocUnsignedSizeMatInMatlab(const size_t numRow, const size_t numCol) {
mxArray *retMat=NULL;
switch(sizeof(size_t)) {
case 4:
retMat = mxCreateNumericMatrix(numRow,numCol,mxUINT32_CLASS,mxREAL);
break;
case 8:
retMat = mxCreateNumericMatrix(numRow,numCol,mxUINT64_CLASS,mxREAL);
break;
default:
mexErrMsgTxt("The integer size of this computer is neither 64 nor 32 bit. Thus, the Matlab data type for pointer conversion could not be determined.");
}
return retMat;
}
mxArray *convert2DReal2UnsignedSizeMat(const mxArray * const val) {
mxArray *retMat;
size_t *retData;
size_t M,N,numElements,i;
if(mxIsComplex(val)==true) {