Does it exist an already developed module on matlab that returns a parallel circle-arc to another given circle-arc ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
bh dhouha
el 3 de Abr. de 2015
Comentada: Image Analyst
el 5 de Abr. de 2015
I would like to return the parallel circle-arc to a given circle-arc, displaced by a distance "e". I found packages that allow for example plot circle -arcs, like geom2d.rar. I'm looking for a similar package.
0 comentarios
Respuesta aceptada
Image Analyst
el 3 de Abr. de 2015
Code for drawing an arc is given in the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_create_an_arc.3F It should be easy to adapt since you already have "a given circle-arc" - just increase the radius from the given radius.
5 comentarios
Image Analyst
el 5 de Abr. de 2015
Simply draw it again the same way you drew the first one, but with shifted xc,yc:
xc = xc + deltaX;
yc = yc + deltaY;
% Now call the drawing routine again with the new xc,yc.
Más respuestas (0)
Ver también
Categorías
Más información sobre Multirate Signal Processing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!