Re: Equation question
- From: Gottfried Helms <helms@xxxxxxxxxxxxx>
- Date: Thu, 21 Sep 2006 08:42:00 +0200
Am 21.09.2006 06:09 schrieb Herb:
a + b = 90Write it in a matrix scheme:
b + c = 130
c + d = 90
d + e = 95
e + f = 90
f + a = 45
How can I find the value of " e " ?
Thanks for any help !!
| a |
| b |
| c |
| d |
| e |
| f |
--------
1 1 0 0 0 0 | 90 |
0 1 1 0 0 0 |130 |
0 0 1 1 0 0 | 90 |
0 0 0 1 1 0 | 95 |
0 0 0 0 1 1 | 90 |
1 0 0 0 0 1 | 45 |
denote the lhs-matrix as A, the [a,b,c...] matrix as X
and the rhs-matrix []90,130,...] as Y.
Then
A * X = Y
X = inv(A)*Y
So you just invert A, leftmultiply with Y and
get the result.
Gottfried Helms
.
- Follow-Ups:
- Re: Equation question
- From: Gottfried Helms
- Re: Equation question
- References:
- Equation question
- From: Herb
- Equation question
- Prev by Date: Re: JSH: The "Published" paper he dosen't what you to know about.
- Next by Date: Re: ? most representative vector of a cone
- Previous by thread: Re: Equation question
- Next by thread: Re: Equation question
- Index(es):