question for a beginner
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Eliraz Nahum
le 22 Sep 2018
Réponse apportée : Star Strider
le 22 Sep 2018
hey, when using syms y(x) do I define both y and x as symbolic? I thought that I have to write it this way - syms y(x) x
0 commentaires
Réponse acceptée
Star Strider
le 22 Sep 2018
Not necessarily.
This works:
syms y(x)
y(x) = x^2;
as will this:
syms y x
y(x) = x^2;
while this will throw an error:
syms y
y(x) = x^2;
I default to defining all variables in a syms declaration, just to be safe (and compulsive).
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Assumptions 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!