How to draw/get crescent plot
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Alper Yaşin
il 1 Ago 2021
Modificato: darova
il 2 Ago 2021
How can i plot a crescent with 6 points?
I am just looking for ideas so if anyone has any, i would be appreciated if you share your idea with me
0 Commenti
Risposta accettata
Vignesh Murugavel
il 1 Ago 2021
Modificato: darova
il 2 Ago 2021
Not exactly a crescent, But something similar, maybe you could try and change any values to achieve the shape you are looking for:
th = linspace( pi/3, -pi/3, 100);
R = 1; %or whatever radius you want
x = R*cos(th) + 5;
y = R*sin(th) + 4;
plot(x,y); axis equal;
hold on
th = linspace( pi/3, -pi/3, 100);
R = 1; %or whatever radius you want
x = R*cos(th) + 4.9;
y = R*sin(th) + 4;
plot(x,y); axis equal;
hold off
You can refer to this below link to get a better idea as well: LINK
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!