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!