Matlab compiled code RF toolbox read function works if called from compiled script but not a compiled function
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (2개)
Giorgia Zucchelli
2015년 2월 25일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Compiler에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!