Error in Overiding Data in compiled MAT file in Standalone Application
1 次查看(过去 30 天)
显示 更早的评论
Kanchibhotla Chandra Sekhar
2014-1-20
回答: Kanchibhotla Chandra Sekhar
2014-1-21
I have a set of values which i have saved in MAT file and along with several m-files compiled and created a stand alone application. In the stand alone application, I have opened the MAT file data and edited some values and saved data again into same MAT file to override the data. But instead of overriding the MAT file it is creating a new MAT file in the same directory of exe file (outside world), but what i want is to override the same MAT file which i have used during compilation.
x = load('Values.mat');
x1 = x.x1;
x2 = x.x2;
save 'Values.mat' x1 x2;
used to override the data
What i need to do, in order to override the data into the same MAT file which loaded during compilation..?
0 个评论
采纳的回答
更多回答(1 个)
Suneesh
2014-1-20
The init callback is part of MATLAB execution and does not get included during code generation. You may be able to achieve what you are trying by using the Rapid SIMulation target (rsim.tlc). See:
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!