How do I append data to a MAT file from C++?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
flybyya23
el 25 de Jun. de 2015
Comentada: shuangshuang kong
el 15 de Abr. de 2018
From a C++ program, I would like to continuously append data to a MAT file while the program runs. The program doesn't have to append to an existing file, but after creating the file at the beginning the program needs to append save data to the MAT file over long periods of time. mxCreateNumericMatrix appears to require the size of the variable to be known with no options to append. The program cannot keep all the data in memory and then write it upon completion.
Thanks!
1 comentario
shuangshuang kong
el 15 de Abr. de 2018
have you solve this problem yet? can you tell me how to do?because i have also met such problem,and i dont know how to figure it out.
Respuesta aceptada
James Tursa
el 30 de Jun. de 2015
Why does it have to be a mat file? The simplest solution is to simply write the values in binary as you go, and then when you are done close the file. Then in MATLAB use fopen and fread to read in the data (in pieces if necessary because of memory constraints).
2 comentarios
James Tursa
el 1 de Jul. de 2015
MATLAB compresses mat files ... maybe that is what you mean by "optimized loading".
Is it your desire to write a MATLAB variable to a mat file incrementally without specifying the size, and then at the end specify the size of the variable? And do this for several variables in the same mat file?
If the variable can't be held in memory at once, is it your plan to load only pieces of it later?
Más respuestas (2)
Adam Hug
el 30 de Jun. de 2015
I think your best bet will be to use MATLAB Engine. This is an API that lets you run MATLAB commands using C/Fortran programs. See the following doc link for more information and examples:
1 comentario
Sean de Wolski
el 1 de Jul. de 2015
One could also use MATLAB Compiler based executables or libraries for this.
Muthu Annamalai
el 1 de Jul. de 2015
Editada: Muthu Annamalai
el 1 de Jul. de 2015
The two alternatives are nicely laid out by Adam, and James.
- Adam's recommendation is to use the Mex API.
- James's recommendation is to use the load(), csvload() like commands from MATLAB
I think following James's approach maybe quicker, and all you need in the short run.
0 comentarios
Ver también
Categorías
Más información sobre External Language Interfaces en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!