how can i solve Shannon capacity in matlab
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
C= B log2 (1+SNR)
how can plot this in matlab
0 comentarios
Respuestas (1)
Walter Roberson
el 19 de En. de 2014
B = rand();
SNR = 20 * rand(1,100);
C = B * log2(1 + SNR);
plot(SNR, C);
1 comentario
ashwini yadao
el 1 de Abr. de 2015
can you plz tell me the m file script for capacity for the simulink model ...
Ver también
Categorías
Más información sobre Prepare Model Inputs and Outputs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!