How to draw every type of triangle?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I was only able to generate a equilateral triangle with my code below;
%Triangle=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
sides = 3;
t = (1/(2*sides):1/(sides):1)*2*pi-pi/3;
b = User_input(3);
x = b*sin(t)+5/8*xmax;
y = b*cos(t)+3/4*ymax;
fill(x,y,'black');
1 Kommentar
Jan
am 25 Mai 2015
Notice that we cannot guess what you want to achieve and what "User_input(3)" is. So please edit the question and append more information.
Antworten (1)
Image Analyst
am 25 Mai 2015
My response is in your duplicate question: http://www.mathworks.com/matlabcentral/answers/217638-how-do-i-insert-the-area-of-each-shape-in-the-centre-of-it#comment_287731
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!