Search:

Type: Posts; User: susieferrari

Search: Search took 0.10 seconds.

  1. Re: Search for min and max values as columns position in array

    Would seek row by row and chech if value at column[1] is greater than any other columns value in the same row.
    Same for value at column[2] and there must be no lower value than this.

    Is this...
  2. Search for min and max values as columns position in array

    Hi all,

    I have an array such this simple example

    double[][]array = {{10.3,10.8,10.1,10.5},{9.3,9.8,9.1,9.5},{11.3,10.8,10.6,10.5}};
    for(int i=0;i<array.length;i++){
    ...
Results 1 to 2 of 2