Transformation matrix for matrix indices to cartesian coordinates
(1,1) (1,2) (1,3)(2,1) (2,2) (2,3)(3,1) (3,2) (3,3)
This is an example 3x3 matrix. In corresponding cartesian coordinate system, the representation would be:
(-1,1) (0,1) (1,1)(-1,0) (0,0) (1,0)(-1,1) (0,-1) (1,-1)
Say, I have any square matrix with dimension-N, where N is odd. I need a generic transformation matrix such that I can get a vector as cartesian coordinates from matrix indices. Does such a function already exist? How should I go ahead in implementing this?