how can i solve Shannon capacity in matlab
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
C= B log2 (1+SNR)
how can plot this in matlab
0 Commenti
Risposte (1)
Walter Roberson
il 19 Gen 2014
B = rand();
SNR = 20 * rand(1,100);
C = B * log2(1 + SNR);
plot(SNR, C);
1 Commento
ashwini yadao
il 1 Apr 2015
can you plz tell me the m file script for capacity for the simulink model ...
Vedere anche
Categorie
Scopri di più su Prepare Model Inputs and Outputs in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!