how can i solve Shannon capacity in matlab

16 views (last 30 days)
C= B log2 (1+SNR)
how can plot this in matlab

Answers (1)

Walter Roberson
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
ashwini yadao on 1 Apr 2015
can you plz tell me the m file script for capacity for the simulink model ...

Sign in to comment.

Categories

Find more on Probability Density Functions in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!