Re: Test if matrices are equivalent in matlab?
On Apr 10, 4:29 pm, "Johs" <s...@xxxxxxx> wrote:
I have a matrix A=[2 3 1; 1 2 2; 3 5 3] (in matlab notation)
And have also been given the inverse:
A^(-1) = [-2 -7 4; 2 5 -3; -1 -1 1]
But if I in matlab make the inverse of: A=[2 3 1; 1 2 2; 3 5 3] with the
command A' I get:
That is not the inverse, it is the transpose.
A = [2 3 1; 1 2 2; 3 5 4]
A =
2 3 1
1 2 2
3 5 4
A'
ans =
2 1 3
3 2 5
1 2 4
Is there some efficient way to see that A' in matlab is the same as A^(-1) =
[-2 -7 4; 2 5 -3; -1 -1 1]?
A' is not the same as A^(-1). What are you
asking?
- Randy
.
Relevant Pages
- Re: Error on solve command
... Now following the 'solve' command, ... equation and ge the closed form sollution, how can I use the equation directly ... ans = solve; ... How can I conver it to general math equation in Matlab and use it? ... (comp.soft-sys.matlab) - Re: State of Forth 200x
... speaking of, who wish to get involved to the extent of understanding some Forth plus application words and tinkering with the program, even though they don't think of themselves as professional programmers. ... A major weakness of ANS Forth is that it is really two different languages, unlike, say, the Unix shell. ... However, I find with both types of users, a command that will commonly be typed with one or more parameters should check those parameters for reasonableness. ... (comp.lang.forth) - Hiding a field in Access 2000 using "Code Builder"
... Im am trying to hide a field on a Access Form, but assign a command button ... Private Sub Command135_Click ... Dim Password As String ... Dim ans As String ... (microsoft.public.access.modulesdaovba) - Re: Bash --- columns problem ??
... I am having a bit of a brain cramp. ... transpose that file into a three column text file reducing it from 23 ... pages to 8 pages before printing. ... There are some options to the prcommand that will multi-column on the way to ... (Fedora) - Re: Data vector
... the mean or the variance. ... To the command ... nonzerosit responds with an empty matrix, ... (comp.soft-sys.matlab) |
|