How to combine multiple functions/lines/arcs in only one?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ErikJon Pérez Mardaras
el 30 de Oct. de 2020
Editada: ErikJon Pérez Mardaras
el 2 de Nov. de 2020
I have drawn the following arc (drawn in pink)
Using and putting one next to another the following arcs (each one with different xp,yp,radius and centre values of course)
teta = linspace(rangini,rangfin);
xco = centre(1)+radius*cos(teta);
yco = centre(2)+radius*sin(teta);
plot(xco,yco,'m');
There is any form of uniting those arcs in only one function so I could work with it more easily in further code/programm?
4 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots 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!