I have a matrix a=[[1 2 3]; [4 5 6]; [7 8 9]] and a submatrix b=[[5 6];[8 9]].
Is there a method in matlab for deconvolving (a,b) ?
I am looking for a method fo recognize the presence of a submatrix in a possible giant matrix. By a sort of deconvolution I expect to obtain something like a matrix with zeros all around and 1 in the place where the submatrix is present.
In the above example, a 1 in the right-down corner.