matPutVariable output size limitation
1 回表示 (過去 30 日間)
古いコメントを表示
I'm using matputvariable to write out an array of data from a compiled MATLAB executable. This works fine until I try to run my application longer and write out more data, then the application ends but only the 128 byte output file is written. No error message and no data. Is there a max size limitation?
mxArray * outputLevel_1 = mxCreateStructArray(numDim, dims, 2, outputLevel_1_fields);
matPutVariable(outputFile, "simData", outputLevel_1);
https://www.mathworks.com/help/matlab/apiref/matputvariable.html
1 件のコメント
James Tursa
2021 年 11 月 16 日
編集済み: James Tursa
2021 年 11 月 16 日
Have you checked to ensure you are not writing beyond valid memory when storing the data? You haven't shown us the code for this. How big does the variable get before you get the problem?
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!