Symbolic variables and equations. Beginner
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I've just started using matlab and am having a problem understanding what this question wants and the commands i need to use to solve it.
Create the symbolic variables
a b c d x
and use them to create the following symbolic expressions:
se1 = x^3 -3*x^2 +x
se2 = sin(x) + tan(x)
se3 =(2*x^2 - 3*x - 2)/(x^2 - 5*x)
se4 = (x^2 -9)/(x+3)
The question wants me to write the commands I used in MATLAB with comments.
So far all I can think to do is
syms a b c d x
and maybe something with the solve function. although i have no idea what to do or where to start.
Thanks for any help.
0 commentaires
Réponses (1)
William
le 1 Nov 2011
clc
clear
syms a b c d x
se1 = x^3 -3*x^2 +x
se2 = sin(x) + tan(x)
se3 =(2*x^2 - 3*x - 2)/(x^2 - 5*x)
Type
help syms
se4 = (x^2 -9)/(x+3)
if you want to plot them type:
help ezplot
2 commentaires
Walter Roberson
le 1 Nov 2011
se1 = x^3 -3*x^2 +x
and so on _is_ the method you use to create a symbolic expression using the symbolic variables.
The assignment doesn't seem to have much point to it ;-)
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!