rayleighhchan object
1 view (last 30 days)
Show older comments
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 Comments
Accepted Answer
Walter Roberson
on 5 Sep 2011
Try
repmat(h,2,5)
Also try
h25(1:2,1:5) = h;
2 Comments
Walter Roberson
on 6 Sep 2011
Sorry, I do not have that toolbox, so I am unable to experiment with it.
More Answers (0)
See Also
Categories
Find more on Communications Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!