フィルターのクリア

how to generate a toeplitz matrix with dimension (100 x 150) using matlab.

1 回表示 (過去 30 日間)
learningmat
learningmat 2013 年 8 月 30 日
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 件のコメント
learningmat
learningmat 2013 年 8 月 30 日
hi Matt J, Thanks for your reply. i want to generate 1's and 0's with the help of toeplitz matrix. am using it for compressive sensing only..thats why i told, it should satisfy both RIP (Restricted Isometry Property) and Coherence property.
Thanks in advance.
Matt J
Matt J 2013 年 8 月 30 日
編集済み: Matt J 2013 年 8 月 30 日
Yes, but I don't think anyone here knows what that means, nor what you did with repmat to try to satisfy it. That's why I said I think you'll have to explain it differently.

サインインしてコメントする。

回答 (1 件)

Matt J
Matt J 2013 年 8 月 30 日
編集済み: Matt J 2013 年 8 月 30 日
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?

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by