Search:

Type: Posts; User: HerlySQR

Search: Search took 0.08 seconds.

  1. Re: Is there an algorithm to find a concentration of points?

    At the end I just find the mode of the x and y values of the points and search there if is a concentration, its correct?
  2. Re: Is there an algorithm to find a concentration of points?

    I mean, how can I apply it to what I want?, yeah, at the end of the video show how to apply it, but only visually, and I wanna the program tell me where is that cluster of points.
  3. Re: Is there an algorithm to find a concentration of points?

    I don't get it, can you explain me pls?
  4. Is there an algorithm to find a concentration of points?

    Hi, I was wondering if there was an algorithm that would help me locate a concentration of elements in a cartesian plane, I mean their locations are too close together, it would be easier to explain...
  5. Re: Timer that could work when is closed doesn't work correctly

    This is the function of the timer:


    private void startTimer(long time) {
    tiempoRestante = time;
    data.running = true;
    data.start = System.currentTimeMillis();
    reloj = new...
  6. Re: Timer that could work when is closed doesn't work correctly

    I don't know if it should, do I try it?
    And the json file is automatically created if don't exists, you just need to edit the file routes in the top of the code to test it correctly.

    Edit:...
  7. Timer that could work when is closed doesn't work correctly

    Hello, I made a timer that shows an image when the time runs out, but I wanna make it work when I close the program and when I open it again, the time still running, for that I save the current...
  8. [SOLVED] Re: JLabel gets the size of the window when I press a button

    It worked, but I can't relocate the panel, how can I do it?


    import javax.swing.*;
    import java.awt.*;

    public class Temporizador extends JFrame {
    private final JLabel tiempo;
    private...
  9. [SOLVED] JLabel gets the size of the window when I press a button

    Hello, I wanna create a timer in Java, starting with the run button and the label of the time, but when I press the button, the label gets the size of the window, and I don't know why, what's wrong?...
Results 1 to 9 of 9