how can i solve Shannon capacity in matlab
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
C= B log2 (1+SNR)
how can plot this in matlab
0 commentaires
Réponses (1)
Walter Roberson
le 19 Jan 2014
B = rand();
SNR = 20 * rand(1,100);
C = B * log2(1 + SNR);
plot(SNR, C);
1 commentaire
ashwini yadao
le 1 Avr 2015
can you plz tell me the m file script for capacity for the simulink model ...
Voir également
Catégories
En savoir plus sur Prepare Model Inputs and Outputs dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!