Effacer les filtres
Effacer les filtres

Undefined function or variable 'drawCircle'.

4 vues (au cours des 30 derniers jours)
Asyran Abdullah
Asyran Abdullah le 2 Août 2018
Commenté : Asyran Abdullah le 3 Août 2018
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?

Réponse acceptée

Walter Roberson
Walter Roberson le 3 Août 2018
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
  1 commentaire
Asyran Abdullah
Asyran Abdullah le 3 Août 2018
Ya, i get it. Thanks sir. ^_^
theta = linspace(0,360);
y=radius*sind(theta)+center(2);
x=radius*cosd(theta)+center(1);
plot(x,y,color);
axis([xmin,xmax,ymin,ymax])
end

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by