how to find subarray from given large 2d array of arbritary dimension

how to find subarray from given large 2d array of arbritary dimension

my code is: import java.lang.*; import java.io.*; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class SubMatrix { public static void main(String[] args) throws IOException {

    File file = new File("file1.txt");
    List<float[]> list = new ArrayList<float[]>();
   Scanner scanner = new Scanner(file).useDelimiter("\n");



    while (scanner.hasNext()) {     
        String[] values = scanner.next().trim().split(" "); 
         float[] floats = new float[values.length];
         for (int i = 0; i < values.length; i++) {
             floats[i] = Float.parseFloat(values[i]);
             }
             list.add(floats);
             } 
             float[][] values = new float[list.size()][];
             for (int i = 0; i < list.size(); i++) {
                 values[i] = list.get(i);
                 for (int j = 0; j < values[i].length; j++) {
                     System.out.print(values[i][j] + " ");

                     }
                     System.out.println();
             }


              int row =values.length;
             int col=values[0].length;

//*******************************

              int subrow;
          BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
          System.out.print("Enter the number for rows :");
            subrow = Integer.parseInt(br.readLine());


             double subArray[][] = new double[subrow][col];

             for(int k=0;k<subrow;k++){
                 for(int p=0;p<col;p++){

             System.arraycopy(values,0,subArray,0,subrow);
             System.out.print(subArray[k][p] + " ");
                 }
                 System.out.println();
             }


}}

and .txt file is: 1.0 3.1 2.1 3.4
2.4 2.0 4.6 5.1
0.2 3.3 4.7 9.1
4.0 5.4 5.1 3.2
6.1 2.1 6.4 2.6
1.2 2.0 3.5 6.9
3.1 2.5 4.6 9.8
7.1 8.1 9.4 5.1
12.1 3.1 2.5 2.4
3.8 9.1 2.1 6.7

i want to print the subarray of any dimension from given array file. i have tried upto above code but it gives runtime error as: NumberFormatException:empty string. error might be on "floats[i] = Float.parseFloat(values[i]); " line.help wud be apprec.

View Answers









Related Tutorials/Questions & Answers:
how to find subarray from given large 2d array of arbritary dimension
how to find subarray from given large 2d array of arbritary dimension ... to print the subarray of any dimension from given array file. i have tried upto...(br.readLine()); double subArray[][] = new double[subrow][col
array find all possible dimension
array find all possible dimension  Given array: int[] dimension = { 1, 2, 3 }; That produces the output: 1 2 3 12 13 23 123 I'm new to array...i can't figure out the way on even how to start... any idea?...really appreaciate
Advertisements
how to print the content of file in 2d matrix having same dimension as given in file(n*m).
how to print the content of file in 2d matrix having same dimension as given in file(n*m).   here is code: import java.io.File; import... of any dimensions in the form of 2d n*m matrix. pls help me
how to find inverse of n*n 2d array in java
how to find inverse of n*n 2d array in java  I reached upto code of printing the matrix as: Assume that matrix is square matrix where row=column code is: public class ReadContents{ public static void main(String args
Find a missing element from array
Find a missing element from array We have two arrays A and B where B consists... the array B. From these two arrays, we have to find the missing element from the second array i.e from B. For this, we have calculated the sum of elements from both
Find Second Largest Number from an Array
Find Second Largest Number from an Array This section illustrates you how to find the second largest number from an array. For this purpose, we have allowed... among them. Pulls the largest number out from the array and again check
how to find the given date is sunday
how to find the given date is sunday  how to find the given date is sunday in java?   Hi Friend, Try the following code:ADS_TO_REPLACE_1 import java.util.*; import java.text.*; class CheckDay{ public static void
using 2D Array
using 2D Array  Write a JAVA program using 2D Array to auto-grade exams. For a class of N students, your program should read letter answers (A, B, C... the class average. Define the exam answer key as Final Array in your program
using 2D Array
using 2D Array  Write a JAVA program using 2D Array to auto-grade exams. For a class of N students, your program should read letter answers (A, B, C... the class average. Define the exam answer key as Final Array in your program
Find Array element from index using GUI
Find Array element from index using GUI In this tutorial, you will learn how to create an GUI application to find an array element from its index. For this, we have created an an array of 100 randomly chosen integers and allow
how to create unit matrix in java of arbritary dimensions
how to create unit matrix in java of arbritary dimensions  i want to create the unit matrix of arbritary dimensions say (n*m).i m a new beginner to java.someone having the program for that? help would be appreciable
Selecting elements of 2D array with GUI
Selecting elements of 2D array with GUI  Hello! I am building... or selected elements of below 2D array (images attached): Year Season 2002 2003... how start with the code for displaying elements of the array selected by user
Storing the Color Image pixel values into 2d array
Storing the Color Image pixel values into 2d array  i want to store the color image pixel values into 2d array and agiain the array have to store into a text file using java... plz provide the code
PHP Array get key from value
In php array one can get the key from value by the use of array_search function Array_search function searches the key for the given values in the array. Example of PHP Array Get Key from Value <?php $product=array
how to print the average of each column of 2d n*m array using java
how to print the average of each column of 2d n*m array using java  here is my code: import java.io.File; import java.io.IOException; import... in the given file having say n*m matrix.   import java.io.File; import
JavaScript array dimension
JavaScript array dimension       In this code we help you to understand array dimension... to make a Two dimension array. The page on loading invoke a function display
how to find last day 0f any given month in mysql?
how to find last day 0f any given month in mysql?  how to find last day of any given month in mysql?   Hi Friend, Here is required code:ADS_TO_REPLACE_1 DECLARE @dtDate DATETIME SET @dtDate = '8/18/2007' SELECT
Find position of an array element
Find position of an array element In this section, you will learn how to find the index of an array element. For this, we have allowed the user to enter... the position of the given integer in array. If the given integer is not in the array
ModuleNotFoundError: No module named 'subarray'
'subarray' How to remove the ModuleNotFoundError: No module named 'subarray...ModuleNotFoundError: No module named 'subarray'  Hi, My Python... to install padas library. You can install subarray python with following
ModuleNotFoundError: No module named 'subarray'
'subarray' How to remove the ModuleNotFoundError: No module named 'subarray...ModuleNotFoundError: No module named 'subarray'  Hi, My Python... to install padas library. You can install subarray python with following
sql php array
; SQL PHP Array support simple dimension array. The SQL PHP Array is used to populate array from MySQL database. Understand with Example ADS_TO_REPLACE_1 The Tutorial illustrate an example from 'SQL PHP Array'. To understand
Read text file to 2D array and sorting the second column
Read text file to 2D array and sorting the second column  we found... and the second column is marks in tests.What we need to find is which student marks... find what was their average % decreased. Then take top 5 of those and write
php array delete element
Array element can be deleted by the array_splice() function. array_splice removes the element starting from given index with the given length. Length is optional.If not given all elements get removed PHP Array Delete Element
find the given input is integer or string
find the given input is integer or string  simple coding for to check the given input value is integer or no.If the given value is integer display "Value is integer" otherwise "Value is not a integer"?   class
Find out last character of array
Find out last character of array  How we can find out the last character of array in java program
How to read data dynamically from keyboard to array in flex
How to read data dynamically from keyboard to array in flex  How to read data dynamically from keyboard to array in flex
How to Print Array in JavaScript
How to Print Array in JavaScript In this section you will learn about Array in JavaScript. Array are important part of all programming languages. Array... Now, here is the example how to declare and access array. <!DOCTYPE html>
how insert data from databse in array and compare new data to already stored value in array
how insert data from databse in array and compare new data to already stored value in array   hello all i tried to fetch data from databse and try to stored it in an array and i want to compare new value that come from database
code to display images using 2d array - Swing AWT
code to display images using 2d array  HI !! I have an image file in ascii/binary format (lines & pixels) in the form of a 2d-array. I would like... such requirements. Can anyone please tell me how to go about it ? Explanation of the code
create associative array from array javascript
create associative array from array javascript  How to create associative array from an array in JavaScript? Please suggest. Thanks
How to send boolean array to servlet from java application?
How to send boolean array to servlet from java application?  Hi, I want to send randomly generated array of boolean values. I used Random function and boolean array length to generate values. My question is I want to send
2d arrays
2d arrays  what is the code for multiplying the values in a 2d array and printing out their sum
How to retrieve array values from html form to jsp?
How to retrieve array values from html form to jsp?  Hi! I am... sample code for how to retrive array values from html to jsp.   hi friend... it into jsp. Means i just want to retrieve values from html form containing array
how to pass an array from one jsp to another jsp - JSP-Servlet
how to pass an array from one jsp to another jsp  hi friedns, can any One tell me how to send an array from one jsp to another jsp,pls any one send the code for this.also porvid the code how to retrive the arry in another jsp
How to get given index value from FloatBuffer in java.
How to get given index value from FloatBuffer in java.  In this tutorial, we will discuss how to get given index value from FloatBuffer in java...; given capacity.  abstract float get() The get
how to call the array variable in scriptlet from javascript function
how to call the array variable in scriptlet from javascript function  This is the scriptlet code:- <% String[] abc={"saab","volvo","bmw","Benz","Porsche","Jaguar"}; %> Actually i want the array variable one by one
how to store the data in a array retrived from the database - JSP-Servlet
how to store the data in a array retrived from the database  hi Friends,actualy my requriement is i need to disply the complete working time... one tell me how to do it this using jsp. thankyou,  Hi nagaraj
ModuleNotFoundError: No module named 'ska-sdp-subarray'
named 'ska-sdp-subarray' How to remove the ModuleNotFoundError: No module named 'ska-sdp-subarray' error? Thanks   Hi, In your...ModuleNotFoundError: No module named 'ska-sdp-subarray'  Hi, My
How to transfer data from int buffer to int array.
How to transfer data from int buffer to int array.  In this tutorial, we will discuss how to transfer data from int buffer to int array. IntBuffer... from associated buffer into int array. Code import 
How to pass Array of string from action class to jsp page
How to pass Array of string from action class to jsp page  this is my... = con.createStatement(); rs = st.executeQuery("SELECT * FROM user_charges...("SELECT * FROM user_charges WHERE TEST_CODE="+tcode); while (rs.next
How To Remove Array Element In Java
which will demonstrate you about how to delete an element from array... from here. In this section an integer array is given which 3rd and 5th position...How To Remove Array Element In Java In this section we will discuss about how
Get values from session to array
Get values from session to array  Hello I have stored my 2 dimensional array into session using C#.net. Now on aspx page i want to store same session variable into 2 dimensional array. And how to find count of session valaiable
Get values from session to array
Get values from session to array  Hello I have stored my 2 dimensional array into session using C#.net. Now on aspx page i want to store same session variable into 2 dimensional array. And how to find count of session valaiable
How to transfer value from long buffer to long array.
How to transfer value from long buffer to long array.  In this tutorial, we will discuss how to transfer value from long buffer to long array...(...) method transfer long value from long buffer into long array. Code
How to transfer data from ByteBuffer to byte array in java.
How to transfer data from ByteBuffer to byte array in java.  ... length) method transfer bytes from buffer into byte array.  About...(.....) method transfer byte from associated buffer into byte array
To find first two maximum numbers in an array
To find first two maximum numbers in an array  Java program to find first two maximum numbers in an array,using single loop without sorting array
USE ARRAY TO FIND THE LARGEST NUMBER AND OCCURRENCE
USE ARRAY TO FIND THE LARGEST NUMBER AND OCCURRENCE  i have some exercise from my lecturer and I still can't understand about ARRAY. here it is: write a program that reads 10 numbers from the keyboard. find the largest number
Create list from array in Java
Create list from array in Java  Hi, I have an array with some data. How to Create list from array in Java? Thanks   Hi, Here is example of creating of creating an array: String[] names = new String[]{"Java", "JSP
ShortBuffer in java, How to transfer content from short buffer to short array.
Write a short value into short buffer at given index.  In this tutorial, we will see how to write the given short value into short buffer at the ... wrap(short[] array)  The wrap(...) method create a short buffer
Display set of names from array
Display set of names from array In this section, you will learn how to display the set of names from array. In the given code, we have declared an array... element, it will display the set of countries name from the array. Example:ADS

Ads