I have this error, and I don't know how to solve it.Can someone help me please?
1 view (last 30 days)
Show older comments
Alexandra Diaconu
on 28 Aug 2018
Commented: Alexandra Diaconu
on 28 Aug 2018
Error in p5_6_Simulate_Ceiling_Bounce_Model_and_Eye_Diagram (line 32)
channel_output = conv(Tx_signal,h,'same');
5 Comments
Accepted Answer
More Answers (2)
KALYAN ACHARJYA
on 28 Aug 2018
Edited: KALYAN ACHARJYA
on 28 Aug 2018
Optical Wireless Communications: System and Channel Modelling with MATLAB By Z. Ghassemlooy, W. Popoola, S. Rajbhandari
2 Comments
KALYAN ACHARJYA
on 28 Aug 2018
In the following lines more terms there
pt = ones(1,nsamp);
Ensure that Tx_signal and h both should be the vector to avoid the error.
Walter Roberson
on 28 Aug 2018
OOK = randi(1,sig_length);
That line says that the rand values should be integers in the range 1 to 1, and that you want sig_length rows and columns of them.
If you want random binary you should use
randi([0 1], 1, sig_length)
See Also
Categories
Find more on Signal Generation, Manipulation, and Analysis 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!