Allan CORNET
Allan CORNET
tested on windows matio 1.5.18 [test_suites.zip](https://github.com/tbeu/matio/files/5284857/test_suites.zip) ``` char** variableNames = Mat_GetDir(matfile, &nVars); ``` mat contains a struct 'B' with many others struct as field.
reading a v7.3 or v6 matfile with A = ["Nelson" "is" "open"] returns MAT_T_UNKNOWN (tested with matio master) ``` A = ["Matio" "string" "array"] save('string_array.mat', 'A', '-v7.3') ``` What are...
``` A = str2func('cos') save('function_handle.mat', 'A', '-v7.3') ``` data_type returns MAT_T_UNKNOWN and class_type returns MAT_C_EMPTY does it return MAT_C_FUNCTION ? Do you expect also to support this type ? Thanks...
Tested with 1.5.13: ``` A = cell(1); save('empty_cell.mat', 'A', '-v7.3') ``` load with matio: ``` matvar_t * elementMatVar = Mat_VarGetCell(matVariable, (int)k); ``` elementMatVar->class_type with k = 0 returns: MAT_C_EMPTY and...
``` A = complexObj1(3, 4) save('d:/class_cplx.mat', 'A','-v7.3') ``` with complexObj1 defined as: ``` function r = complexObj1(rp,ip) c.r = rp; c.i = ip; r = class(c, 'complexObj1'); end ``` data_type...
nzmax, ir, jc should be uint64 and not int32 v7.3 matfile uses uint64 and not int32 index
``` A = datetime(2011,12,13) save('datetime-scalar.mat','A','-v7.3') D = [datetime(2011,12,13); datetime(2012,1,14)]; save('datetime-matrix.mat','D','-v7.3') ``` data_type returns MAT_T_UNKNOWN datetime is available since 2014 do you plan to support it ?
An "official" binary build could be great for windows VS2015. Since an appveyor CI is available, it should be "easy" to expose a zip with artefact. an 32 bit and...
version: boost 1.68 It is possible to read easily a 24 bit BMP with: ``` rgb8_image_t runtime_image; read_image(filename, runtime_image, boost::gil::bmp_tag()); ``` With 8 bit bmp (gray color) image, it fails...
It could be great (specially for Windows platforms) to export Github actions artefacts. (.dll, .lib, .h) ``` - uses: actions/upload-artifact@v1 with: name: github-action-artifacts path: artifacts/ ```