Syms function with standalone application

조회 수: 8 (최근 30일)
sangjin kim
sangjin kim 2017년 10월 12일
편집: Song-Hyun Ji 2023년 6월 14일
Is there any method that I can make standalone application with syms function, using matlab compiler?? I want to use solve function so I have to use syms function... Actually, there is one way to solve this problem, quadratic formula. But I need a fundamental solution.

답변 (2개)

Walter Roberson
Walter Roberson 2017년 10월 12일
No, nothing in the symbolic toolbox can be compiled.
If you always have the same form of equation, then you can create the equation symbolically and solve it symbolically ahead of time, and then you can use matlabFunction with the 'file' option to write the solution to a .m file in a form that can be executed numerically.

Song-Hyun Ji
Song-Hyun Ji 2023년 6월 14일
편집: Song-Hyun Ji 2023년 6월 14일
Here are the example documentation and the answers page.
- Deploy Generated MATLAB Functions from Symbolic Expressions with MATLAB Compiler
- How to deploy when using 'syms' and 'solve' with function input arguments to consist the equation in MATLAB Compiler

카테고리

Help CenterFile Exchange에서 기호와 수치 간 변환에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!