Borrar filtros
Borrar filtros

I am having trouble computing this problem in matlab. How do I compute AA^-1 and print out the product where A is the 9x9 matrix?

2 visualizaciones (últimos 30 días)
A=[ai,j] , ai,j=1/i+j-1. So far I have i=4 and j=5
  1 comentario
John D'Errico
John D'Errico el 5 de Dic. de 2017
Please don't add answers, when all you want to do is make a comment. In my comment, I even said that was what you are asked to compute. Thus, it seems clear that the homework problem you have been assigned was to...
Compute the 9x9 hilbert matrix, thus the square matrix A(i,j), such that
A(i,j) = 1/(i+j-1)
Then compute the inverse of that matrix and multiply the two. Is the product an identity matrix, as theory suggests it should be? If not, then you might be asked to conjecture as to why it is not so. This might be the subject of further class discussions and/or homework assignments.

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 4 de Dic. de 2017
Uh,
i=4
j=5
will not do
A=[ai,j]
ai,j=1/i+j-1
I don't know exactly what operation you were hoping for, but that code won't do it. Why don't you try in a for loop over j. Then you'll need to define what ai is. the second line of code only defines j to be (1/i) + j + 1, it does NOT define ai at all, and hence when you try to use it as a row vector in [ai,j] it will fail because ai was never defined.
Also, what exactly is "AA^-1" - can you describe in words what operation(s) this is?
  3 comentarios
John D'Errico
John D'Errico el 4 de Dic. de 2017
Editada: John D'Errico el 5 de Dic. de 2017
I was surprised too. Surely a reflection of the pure quality of your answers, even when you were totally confused yourself.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB 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