Effacer les filtres
Effacer les filtres

Creating an empty sym variable?

3 vues (au cours des 30 derniers jours)
Kevin Bachovchin
Kevin Bachovchin le 15 Fév 2013
Hello,
How I can create an empty 0x0 sym variable? Such as x=[] x={}, expect I want to make x an empyt sym, not an empty double or cell.
Thank you, Kevin

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 15 Fév 2013
  3 commentaires
Azzi Abdelmalek
Azzi Abdelmalek le 15 Fév 2013
Even with double
x=[];
y=10
a=y+x % is different from y, it gives []
a=[x y], % gives y
Now with sym
x=sym([])
syms y
a=x+y, % the result is x
a=[x y] % the result is y
Azzi Abdelmalek
Azzi Abdelmalek le 15 Fév 2013
Maybe your are looking for
x=sym('0')

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by