Display a matrix in terms of other matrices
Show older comments
Hello,
I have a 5x5 matrix A and a large matrix containing say B = [A;A^2;A^3.....A^n]. I want to display this B matrix in form of A's. If I print B, it gives me a large matrix with numbers in it. I want it to be displayed in terms of A, A^2, A^3 and so on.
How can I do that in matlab?
Thank you, Salman Hafeez
Answers (1)
Azzi Abdelmalek
on 28 Jul 2014
n=10
B =['[' sprintf( 'A^%d ',1:n) ']']
2 Comments
Salman
on 28 Jul 2014
Azzi Abdelmalek
on 28 Jul 2014
You can use symbolic variables
syms A B C D
X = [A A^2 A^3]
Categories
Find more on Operators and Elementary Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!