Why is it wrong: e3=sym('si​n(x)^2+cos​(x)=0')

6 vues (au cours des 30 derniers jours)
zhenyu zeng
zhenyu zeng le 22 Avr 2019
Commenté : madhan ravi le 22 Avr 2019
Why is it wrong: e3=sym('sin(x)^2+cos(x)=0')

Réponse acceptée

madhan ravi
madhan ravi le 22 Avr 2019
Modifié(e) : madhan ravi le 22 Avr 2019
sym('') was replaced by str2sym('') in latest versions and you seem to be using 2018b version
e3=str2sym('sin(x)^2+cos(x)=0')
% ^^^^^^^
  10 commentaires
zhenyu zeng
zhenyu zeng le 22 Avr 2019
Why not use str2sym('a') instead of sym('a’)?
madhan ravi
madhan ravi le 22 Avr 2019
It only works for only a number or a variable. Read the documentations. Take MATLAB on-ramp course to learn the basics of MATLAB.

Connectez-vous pour commenter.

Plus de réponses (1)

KSSV
KSSV le 22 Avr 2019
syms x
e3 = sin(x)^2+cos(x)==0

Community Treasure Hunt

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

Start Hunting!

Translated by