Solving ODE

2 visualizaciones (últimos 30 días)
zizo
zizo el 31 de Mayo de 2011
[EDIT: 20110530 22:44 CDT - clarify - WDR]
hey . how i solve this linear equations (ODE) in matlab
x-y-5z-5=0
3x+y-3z=5
y+4=z
  1 comentario
Walter Roberson
Walter Roberson el 31 de Mayo de 2011
Those are not ODE: there is no differential term anywhere in them.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 31 de Mayo de 2011
x_y_z = [1 -1 -5;3 1 -3;0 1 -1] \ [5 5 -4].';
And crosschecking the second line:
>> 3*x_y_z(1)+x_y_z(2)-3*x_y_z(3) ans = 5
The values in the matrix to the left of the \ have been read off from the x, y, and z coefficients of the linear equations. The values in the vector to the right of the \ have been read off from the implicit right hand sides (constant terms) of the linear equations.

Más respuestas (1)

zizo
zizo el 31 de Mayo de 2011
thanks man

Categorías

Más información sobre Numerical Integration and Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by