Symbolic variables and equations. Beginner

조회 수: 1 (최근 30일)
Jessica
Jessica 2011년 11월 1일
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.

답변 (1개)

William
William 2011년 11월 1일
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
Jessica
Jessica 2011년 11월 1일
i understand defining the variable with syms a b c d x
i also understand typing se1, se2, se3, and se4 into matlab
Its from there that i don't know what to do. it wants me to create the symbolic expressions using the symbolic variables. I have no idea how to do that.
Its not asking for a graph. Just the matlab commands.
Walter Roberson
Walter Roberson 2011년 11월 1일
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 ;-)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by