how can i solve Shannon capacity in matlab
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
C= B log2 (1+SNR)
how can plot this in matlab
0 Kommentare
Antworten (1)
Walter Roberson
am 19 Jan. 2014
B = rand();
SNR = 20 * rand(1,100);
C = B * log2(1 + SNR);
plot(SNR, C);
1 Kommentar
ashwini yadao
am 1 Apr. 2015
can you plz tell me the m file script for capacity for the simulink model ...
Siehe auch
Kategorien
Mehr zu Prepare Model Inputs and Outputs finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!