Using viscircles to draw circles around points.

21 visualizaciones (últimos 30 días)
Vance Blake
Vance Blake el 23 de Ag. de 2019
Respondida: Adam Danz el 28 de Ag. de 2019
Hello, I am trying to draw to circles using viscircles but some of the circles end up in random space instead of around the center coordiantes ive given them. Below is the code I am using to draw my circles and a picture of what is happening on the plot. Any help would be greatly appreciated
% draw exlcusion range circles b/w hormone seeds and hormone seeds
HS_kept_x = HS_kept(:, 1);
HS_kept_y = HS_kept(:, 2);
LengthHS_kept = length(HS_kept);
radii_node2 = 8;
hold on
for i = 1:n
centers_node5 = [x(i), y(i)];
elim_circles3(i) = viscircles(centers_node5, radii_node2, 'color', 'k', 'linestyle', '--');
end
for j = 1:LengthHS_kept
centers_HS_kept = [HS_kept_x(j), HS_kept_y(j)];
elim_circles4(j) = viscircles(centers_HS_kept, radii_node2, 'color', 'k', 'linestyle', '--');
end
CTR Demo Incomplete 2.PNG
  20 comentarios
Vance Blake
Vance Blake el 28 de Ag. de 2019
Editada: Vance Blake el 28 de Ag. de 2019
Hey Adam I figured it out it was this line "[elim_dist2 = nan(numel(x))]" causing the problems because it sets up a NaN matrix based on the size of x whcih has 10 elements instead of the size i need for my second elimination. Took me a bit to see it but I went line by line running each piece of code individually like you suggested and figured it out. Thanks for putting up with my ignorance and all your help with my problems. make this an answer so that i can accpet it and give you the credit you deserve.
Adam Danz
Adam Danz el 28 de Ag. de 2019
Going line-by-line is often the best way to troubleshoot code and to really understand what's happening in the code. Well done!

Iniciar sesión para comentar.

Respuesta aceptada

Adam Danz
Adam Danz el 28 de Ag. de 2019
Summary of the discussion in the comment section under the question:
A matrix was pre allocated incorrectly which led to indexing problems.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by