You are given a 2D matrix of integers with dimensions m x n. Write a function that finds the largest contiguous submatrix that is symmetric along its vertical axis. A submatrix is considered vertically symmetric if, for every row in the submatrix, the elements read the same from left to right as they do from right to left.
Your function should:
Consider the following when designing your solution:
Example:
Given the matrix:
[1, 2, 2, 1]
[3, 4, 4, 3]
[5, 6, 7, 8]
One acceptable result is identifying the submatrix formed by the first two rows (which is vertically symmetric), along with its coordinates and dimensions.
Implement your solution in the programming language of your choice.