public void copyCoordinateToLabelMatrixMarketFile(string pathOutputCoordinate, string pathOutputLabel)
        {
            MatrixCoordinateMap classMap1 = this.getClassMap1();
            MatrixCoordinateMap classMap2 = this.getClassMap2();
            bool isOneDimension           = this.getIsOneDimension();

            if (isOneDimension)
            {
                MatrixCoordinateMap classMapReverse1 = classMap1.copyAndReverseMap();
                IO.createMatrixMarketFile(pathOutputCoordinate, pathOutputLabel, ' ', classMapReverse1, isOneDimension);
            }
            else
            {
                MatrixCoordinateMap classMapReverse1 = classMap1.copyAndReverseMap();
                MatrixCoordinateMap classMapReverse2 = classMap2.copyAndReverseMap();
                IO.createMatrixMarketFile(pathOutputCoordinate, pathOutputLabel, ' ', classMapReverse1, classMapReverse2);
            }
        }