Create a Maven project in NetBeans
(type: Java Application) to develop a program that makes use
of the library la4j, with support to linear
algebra operations. The dependency for la4j is the following:
<dependency>
<groupId>org.la4j</groupId>
<artifactId>la4j</artifactId>
<version>0.6.0</version>
</dependency>
Develop a program in the project created at the previous step, so that, given as input the order of a square matrix, randomly initializes one diagonalizable matrix of that order, and calculates its eigendecomposition. All the required functionalities are present in the la4j library.