Matlab compiled code RF toolbox read function works if called from compiled script but not a compiled function

2 Ansichten (letzte 30 Tage)
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.

Antworten (2)

Giorgia Zucchelli
Giorgia Zucchelli am 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

Jongbae Park
Jongbae Park am 30 Okt. 2015
have you resolved your issue? I am also getting the same issue.

Kategorien

Mehr zu MATLAB Compiler 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