How to write code for hankle and toeplitz matrix?
Mostrar comentarios más antiguos
I have matrices like
F = [CA;CA^2;CA^3;CA^4;CA^5;CA^6;CA^7;CA^8;CA^9;CA^10]
and other matrix is
phi=[CB 0 0 0;
CAB CB 0 0;
CA^2B CAB CB 0;
CA^3B CA^2B CAB CB;
CA^4B CA^3B CA^2B CAB;
CA^5B CA^4B CA^3B CA^2B;
CA^6B CA^5B CA^4B CA^3B;
CA^7B CA^6B CA^5B CA^4B;
CA^8B CA^7B CA^6B CA^5B;
CA^9B CA^8B CA^7B CA^6B]
How can I do matlab coding for these matrices
3 comentarios
the cyclist
el 12 de Sept. de 2014
I assume A, B, and C variables you already have.
Matt J
el 13 de Sept. de 2014
Does CA^2 signify C*A^2 or (CA)^2 where 'CA' is the name of one variable. Are A,B,C scalars are matrices and, if matrices, of what size?
baruch
el 14 de Sept. de 2014
Respuesta aceptada
Más respuestas (2)
the cyclist
el 12 de Sept. de 2014
Editada: the cyclist
el 12 de Sept. de 2014
F = C*A.^(1:10)
1 comentario
Roger Stafford
el 12 de Sept. de 2014
Editada: Roger Stafford
el 12 de Sept. de 2014
phi = toeplitz(C*A.^(0:9)*B,zeros(1,4));
It is assumed that C*A^n*B is a scalar.
1 comentario
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!