how to generate a toeplitz matrix with dimension (100 x 150) using matlab.
Mostrar comentarios más antiguos
If i give toeplitz(a,b) and i defined a=[1 0 1 0]:, b=[1 0 1 1] with the help of repmat i can access the matrix in the dimension of 100 X 150 but it doesnt satisfy the Incoherence and RIP .so i want to generate a toeplitz measurement matrix, just by assigning the number like toeplitz(100,150).
If any one know, pls suggest me too...
Thanks in advance.
3 comentarios
Matt J
el 30 de Ag. de 2013
It is doubtful that anyone will understand what you mean by Incoherence and RIP, though I'm guessing it is from Compressed Sensing. Show what you mean by using repmat to go from a 4x4 Toeplitz matrix to something 100x150 and what it doesn't satisfy.
learningmat
el 30 de Ag. de 2013
Respuestas (1)
This generates a 100x150 Toeplitz matrix, T.
a=1:100; b=1:150; T=toeplitz(a,b);
Why can't this do what you need for an appropriate choice of a,b?
Categorías
Más información sobre Mathematics 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!