how can i solve Shannon capacity in matlab

8 次查看(过去 30 天)
C= B log2 (1+SNR)
how can plot this in matlab

回答(1 个)

Walter Roberson
Walter Roberson 2014-1-19
B = rand();
SNR = 20 * rand(1,100);
C = B * log2(1 + SNR);
plot(SNR, C);

类别

Help CenterFile Exchange 中查找有关 Probability Density Functions 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by