Posts by Alex Ferreira • 26 points
1 post
-
1
votes1
answer79
viewsA: Insert n points of a vector randomly into any matrix in java
There is no need for any library for such a simple task, perhaps just the Random to give you the random positions. Example: Random random = new Random();…