Matlab compiled code RF toolbox read function works if called from compiled script but not a compiled function
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Matlab version: R2014b OS: Windows 7 64bit Addon toolbox: RF toolbox
I have some code I need to compile into standalone for use in a manufacturing environment. The code uses the read function out of the RF toolbox to read touchstone 1.0 files and process them. The code compiles and runs fine if the top level code that is compiled is a script. However, I need to pass variables from the command line, so I think I need the top level code to be a function. However, the code fails when run when the top level code is a function, giving the following error:
Error using rfdata.reference/set Invalid parameter/value pair arguments.
Error in rfdata.data/read (line 73)
The offending function looks like this:
function [S, f] = RF_ReadTouchstone( filename )
filedata=read(rfdata.data,char(filename)); [S,f]=extract(filedata,'S_parameters',50);
end
I have verified that the variables are propagating through the code properly. It seems like something strange the compiler is doing.
0 Commenti
Risposte (2)
Giorgia Zucchelli
il 25 Feb 2015
Dear Josiah,
I built a very simple main function invoking the function RF_ReadTouchstone, and I managed to compile and execute it correctly.
function main(input)
[S,f] = RF_ReadTouchstone(input);
disp(S);
end
As I cannot reproduce your issue, I would recommend to directly contact MathWorks technical support.
With best regards,
Giorgia
0 Commenti
Jongbae Park
il 30 Ott 2015
have you resolved your issue? I am also getting the same issue.
0 Commenti
Vedere anche
Categorie
Scopri di più su MATLAB Compiler in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!