How to solve a system of equations symbolically? (MATLAB R2011a)

55 views (last 30 days)
This is what I'm trying to do:
syms x1 x2 x3 X1 X2 X3 t
S = solve('x1 = 3*t*X1+X2', 'x2 = 2*t^2*X2', 'x3 = 5*t*X3')
S = [S.X1 S.X2 S.X3]
I get a reference to non-existent field error though.
It's solving for x1, x2, and x3, but need to solve for X1, X2, and X3 in terms of x1, x2, x3 and t.
Please help! Thanks!

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 30 Nov 2012
Edited: Azzi Abdelmalek on 30 Nov 2012
syms x1 x2 x3 X1 X2 X3 t
S = solve(x1==3*t*X1+X2, x2==2*t^2*X2, x3==5*t*X3,X1,X2,X3)
S = [S.X1 S.X2 S.X3]
  6 Comments

Sign in to comment.

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!