how can I plot y=log(2,(2-a)) ?
이전 댓글 표시
How can I plot y = log(2,(2-a) in matlab: I have written this code but unfortunately I encounter with errors:
a = 0:0.2:1;
C_ro = plot(-(a./2).*log(2,a./2) - ((2 - a)./2).*log(2,(2 - a)./2));
plot(a, C_ro)
채택된 답변
추가 답변 (1개)
Osama AlThahab
2013년 8월 26일
0 개 추천
your code is wrong, remove plot from C_ro
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!