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!