I need help randomizing the points of the traingle
1 view (last 30 days)
Show older comments
Answers (1)
David Hill
on 28 Nov 2022
figure;hold on;
for k=1:10
p=polyshape(rand(3,1),rand(3,1));
plot(p)
end
2 Comments
Torsten
on 28 Nov 2022
Edited: Torsten
on 28 Nov 2022
And what does it mean: "randomize one triangle" ?
According to how a normal person would interprete it, you already did this in your code: You randomly chose 3 points in 2d space (most probably meant as the corner points of a triangle).
Or do you need random points inside a fixed triangle ?
See Also
Categories
Find more on Graph and Network Algorithms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!