Undefined function or variable 'drawCircle'.
조회 수: 5 (최근 30일)
이전 댓글 표시
Hi, I have some problem with drawCicle. Here is the code.
% draw tier 1 and tier 2 circles
drawCircle(baseStation.x, baseStation.y, tier1Radius, 100, 'r--');
drawCircle(baseStation.x, baseStation.y, tier2Radius, 100, 'b--');
And the error is:
*Undefined function or variable 'drawCircle'.*
Can someone help me out?
댓글 수: 0
채택된 답변
Walter Roberson
2018년 8월 3일
drawCircle is not a MATLAB function. It appears to be an Octave function.
Also, there is an implementation of a drawCircle function at https://www.mathworks.com/matlabcentral/answers/20077-counting-plots-on-a-figure
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!