rayleighhchan object
2 ビュー (過去 30 日間)
古いコメントを表示
Hello all,
I'm working with h=rayleighchan() object. Can anybody tell me how I can create a matrix of h with specific size? i.e. [h h ...h] I've tried h*ones(2,5) but it's not working.
0 件のコメント
採用された回答
Walter Roberson
2011 年 9 月 5 日
Try
repmat(h,2,5)
Also try
h25(1:2,1:5) = h;
2 件のコメント
Walter Roberson
2011 年 9 月 6 日
Sorry, I do not have that toolbox, so I am unable to experiment with it.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!