Undefined function or variable 'syms' - C++

4 ビュー (過去 30 日間)
Lavinia Monenciu
Lavinia Monenciu 2017 年 6 月 29 日
コメント済み: Lavinia Monenciu 2017 年 6 月 29 日
Hey, I'm really new with Matlab, and i'm trying to call a function func from my VS C++ project, but i get the next error: Undefined function or variable 'syms'. I'm trying to solve some inequalities. Any help would be really appreciated.
function rez = func(a,b,c)
coder.extrinsic('func1');
rez = func1(a,b,c);
end
function out = func1(a,b,c)
syms x
y = solve(a*x^1 + b > c,x);
out = char(y);
end

回答 (1 件)

Steven Lord
Steven Lord 2017 年 6 月 29 日
Symbolic Math Toolbox is not supported for use with MATLAB Compiler or MATLAB Coder.
  1 件のコメント
Lavinia Monenciu
Lavinia Monenciu 2017 年 6 月 29 日
Thank you for the response. But is there any other way to solve inequalities in Matlab?

サインインしてコメントする。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by