how can i solve Shannon capacity in matlab
6 views (last 30 days)
Show older comments
C= B log2 (1+SNR)
how can plot this in matlab
0 Comments
Answers (1)
Walter Roberson
on 19 Jan 2014
B = rand();
SNR = 20 * rand(1,100);
C = B * log2(1 + SNR);
plot(SNR, C);
1 Comment
ashwini yadao
on 1 Apr 2015
can you plz tell me the m file script for capacity for the simulink model ...
See Also
Categories
Find more on Prepare Model Inputs and Outputs 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!