Symbolic variables and equations. Beginner
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
William
am 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 Kommentare
Walter Roberson
am 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 ;-)
Siehe auch
Kategorien
Mehr zu Calculus finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!