How to combine multiple functions/lines/arcs in only one?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ErikJon Pérez Mardaras
le 30 Oct 2020
Modifié(e) : ErikJon Pérez Mardaras
le 2 Nov 2020
I have drawn the following arc (drawn in pink)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/397224/image.png)
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 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!