I am new to Perl coding & am facing a situation. Here is the problem statement:
I have a file which contains some data (only numbers) in matrix form like
1 2 3 4 5 6 .......
7 9 4 6 7 8 .......
...................
...................
I have another file which contains 2 rows of data (some coordinates) like
30 50
04 09
80 90
.. ..
.. ..
These are the coordinates of data situated in the first file, I want to extract that data from the first file & paste in the 3rd row in the second file, for example in the first case I have to search the element in 30th row & 50th column in the first file & paste it in the 1st row 3rd column of the second file.