how can i solve Shannon capacity in matlab
8 次查看(过去 30 天)
显示 更早的评论
C= B log2 (1+SNR)
how can plot this in matlab
0 个评论
回答(1 个)
Walter Roberson
2014-1-19
B = rand();
SNR = 20 * rand(1,100);
C = B * log2(1 + SNR);
plot(SNR, C);
1 个评论
ashwini yadao
2015-4-1
can you plz tell me the m file script for capacity for the simulink model ...
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Prepare Model Inputs and Outputs 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!