Undefined function 'syms' for input arguments of type 'char', what can I do?

조회 수: 142 (최근 30일)
marvellous
marvellous 2024년 8월 21일
댓글: marvellous 2024년 8월 22일
In matlabR2023b, I packaged two m files into an exe file, in need of solving equations, I used the function 'syms' in these two m files. There was no problem running these m files before. However, running the generated exe file report errors. The error code is as follows. What is the reason for this? What should I do? Could you please give me some advice? Thank you!
Error code: Undefined function 'syms' for input arguments of type 'char'.
'syms' was excluded from packaging for the MATLAB Runtime environment according to the MATLAB compiler license. Have the application owner either resolve the file or function from the code, or use the MATLAB function "isdeployed" to ensure the function is not invoked in the deployed component.
Connect the application owner for more details.
Error in => ceshi1.m at line 14
  댓글 수: 3
Walter Roberson
Walter Roberson 2024년 8월 21일
Absolutely nothing from the Symbolic Toolbox can be compiled or have code generated for it.
You will need to work around it using the methods linked to by @Stephen23

댓글을 달려면 로그인하십시오.

채택된 답변

Uday
Uday 2024년 8월 21일
Hi Marvellous,
The error message "Undefined function 'syms' for input arguments of type 'char'" indicates that the "syms" function is not available in the compiled executable. This typically happens because "syms" is part of the Symbolic Math Toolbox, which is not supported in the MATLAB Runtime environment used for deployed applications.
You can try the following ways as well:
  1. If possible, perform all symbolic computations in MATLAB before deploying your application. Save the results as numeric values or functions that can be used in the compiled executable.
  2. Use the "isdeployed" function to conditionally execute code. This way, you can ensure that symbolic computations are only performed in the MATLAB environment and not in the compiled application. For example:
if ~isdeployed
syms x
% Perform symbolic computations
else
% Use precomputed results or alternative logic
end
Alternative Methods: Consider using numerical solvers or other MATLAB functions that are supported in the MATLAB Runtime environment for the computations you need.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by