Matlab compiled code RF toolbox read function works if called from compiled script but not a compiled function
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
Giorgia Zucchelli
el 25 de Feb. de 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 comentarios
Jongbae Park
el 30 de Oct. de 2015
have you resolved your issue? I am also getting the same issue.
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Compiler 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!