The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 4 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
Please I want your solution in Eclipse program in Java
. Project goalTo get familiar with the Java programming environmentTo understand the relationships between class/file/package;To warm up with the Java fundamentals: if-else, loop, class, object,static, public, etc;To practice Java offered classes for data structuresYour job is to develop a simple version of mathematics tool on linear algebra.Assuming you are the developer for supporting those APIs for otherprogrammers to use. Your role is responsible for designing a Matrix structureand provide some basic containers to hold these matrices, such as stack orqueue. There are three class files involved, one is called “Matrix”, whichdefines the matrix structure and some basic function about the matrix; thesecond class is called “StackContainer”, which is used to store differentmatrices in a stack structure; the third class is called “QueueContainer”,which is used to store different matrices in a queue structure. After you finishimplementing these three classes, you need to create a “Main” class file in the“main” package to test it. This class is pretty much a test class that has“main()” function inside it. The basic structure for these three files of theproject is as the image blow:Packages:For this project, there are three packages you need to create:“linear.algebra.types”, “linear.algebra.containers”, and “test”. For the“linear.algebra.types” package, it has a single “Matrix.java” file; for the“linear.algebra.containers”, it has two files: “StackContainer.java” and“QueueContainer.java”; for the “test” package, it has a “Main.java”, whichholds the “main()” function in the Main class. The structure for these files areas the figure 1 shows below: