Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

JAVA PROGRAM Complete the matrix class and Create Main Class 1. The constructor should have two parameters: rows and columns, so, you need to delete

JAVA PROGRAM

Complete the matrix class and Create Main Class

1. The constructor should have two parameters: rows and columns, so, you need to delete constants and add preconditions.

2. Write the Main class, create a new 2d-array with random numbers, create a new instance of the Matrix class, and check all methods in Matrix class.

 public class Matrix { public static final int ROW = 3; public static final int COL = 4; // declare the instance variable that will hold the 2-dim array /**Instantiate a ROW x COL matrix, empty */ public Matrix() { } /** set the value of a particular element in the matrix * @param row the row of the element. 0 <= row < Matrix.ROW * @param col the column of the element. 0 <= col < Matrix.COL * @param value the value to be stored * @throws ArrayIndexOutOfBoundsException for invalid row or column */ public void setValue(int row, int col, double value) { // Why don't we have to test row/col for validity? } /** returns the value of a particular element in the matrix * @param row the row of the element. 0 <= row < Matrix.ROW * @param col the column of the element. 0 <= col < Matrix.COL * @throws ArrayIndexOutOfBoundsException for invalid row or column */ public double getValue(int row, int col) { } /** swap 2 rows of this matrix * @param r1 one of the rows to swap. 0 <= r1 < Matrix.ROW * @param r2 the other row to swap. 0 <= r2 < Matrix.ROW * @throws ArrayIndexOutOfBoundsException for invalid row or column */ public void swapRows(int r1, int r2) { } /** multiply one row by a non-zero constant * @param multiple the non-zero constant * @param row the row to change * @throws IllegalArgumentException if multiple is 0 * @throws ArrayIndexOutOfBoundsException for invalid row */ public void multiplyRow(double multiple, int row) { } /** add row r1 into row r2. Equivalent to r2 += r1 * @param r1 the row to add 0 <= r1 < Matrix.ROW * @param r2 the row to add into. 0 <= r2 < Matrix.ROW. This row will change. * @throws ArrayIndexOutOfBoundsException for invalid row */ public void addRows (int r2, int r1) { } /** * set new row in the matrix * @param row the new row to insert * @param rIdx the index of this new row 0 <= rIdx < Matrix.ROW * @return the old row * @throws IllegalArgument exception if row is not the correct length of Matrix.COL * @throws ArrayIndexOutOfBoundsException for invalid row */ public double[] replace(double[] row, int rIdx){ } /** * Add 2 Matrices together and return a new Matrix * @param m the 2nd Matrix * @return the matrix sum of this + m */ public Matrix sum(Matrix m){ } /** Return this matrix as a String of 3 rows of numbers in 4 columns */ public String toString() { } } 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 2 Lnai 9285

Authors: Annalisa Appice ,Pedro Pereira Rodrigues ,Vitor Santos Costa ,Joao Gama ,Alipio Jorge ,Carlos Soares

1st Edition

3319235249, 978-3319235240

Students also viewed these Databases questions