Filter löschen
Filter löschen

MATLAB Coder - How to use "save" command

16 Ansichten (letzte 30 Tage)
Ved
Ved am 18 Mär. 2015
Beantwortet: Bonyadi Arezoo am 14 Jul. 2022
I am using MATLAB (R2013a) Coder to generate the appropriate C++ files. I am unable to use the 'save' command when I am trying to save my processed matrices. Cutting the chase, if I have a simple function like the following (that just saves the variable as .mat file, and also returns the same),
function a = savefun( a )
%#codegen
save('a','a');
end
then I am having trouble generating the appropriate .cpp/.h files using Codegen. Here's a screens shot
.
Any help will be appreciated.

Antworten (2)

Mike Hosea
Mike Hosea am 19 Mär. 2015
Unfortunately, the SAVE command is not supported for code generation, and it doesn't make sense to call it as an extrinsic function. Since you are running R2013a, you should be able to use FOPEN, FCLOSE, and FPRINTF to write a text file with your data in it. Note that FPRINTF for code generation will require you to write your array elements with a loop (or loops), since it doesn't support the automatic looping that MATLAB's FPRINTF does. It will be more cumbersome to use the text files back in the MATLAB environment, but it should work.
The only alternative I might suggest, if your need is limited to returning intermediate stages for, say, debugging purposes, is to use ASSIGNIN as an extrinsic function.
function a = dosomething( a )
%#codegen
coder.extrinsic('assignin');
% Input changes, and we want to remember this step.
a = a/2;
assignin('base','a1',a);
% Array changes again. Remember this value.
a = a + 1;
assignin('base','a2',a);
% Array changes again, but this is the return value.
a = cos(a);
Then your calling program can use the SAVE command to write mat files if you need them.
  2 Kommentare
Mike Hosea
Mike Hosea am 20 Mär. 2015
Ah, I just realized how to do it in MATLAB (not for standalone code generation). You need a function
function mysave(varname,value)
assignin('base',varname,value)
save(varname,varname);
This is a .m file that you will need on the MATLAB path. You won't generate code for it. Then you call this function extrinsically in your own code. You can use coder.extrinsic for it, as above, or just
feval('mysave','a',a);
when you would have written
save('a','a');
Dipanshu Verma
Dipanshu Verma am 2 Jan. 2021
@Mike I have tried creating my own function which is path detectable by MATLAB as it directly runs in console window too but still the error persists in my case.

Melden Sie sich an, um zu kommentieren.


Bonyadi Arezoo
Bonyadi Arezoo am 14 Jul. 2022
Dear Mike, I wonder if you could answer this question:
https://uk.mathworks.com/matlabcentral/answers/1759570-real-time-matlab-speedgoat-simulink-read-write-data-solution

Kategorien

Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by