I have a database on a .csv
like this:
1,2455,2.5,1260759113
1,2968,1.0,1260759200
1,3671,3.0,1260759117
2,10,4.0,835355493
2,17,5.0,835355681
2,39,5.0,835355604
And I would like to convert it into a matrix in Matlab but with the following characteristics:
The first element indicates de column of the matrix (starting from 1)
The second element corresponds to the row of the matrix (starting from 1)
The third element is the actual value that has to go in that
(column ,row)
of the matrixThe fourth element is garbage...
I am just getting started with Matlab so it would be great if you could provide me with some code because I don't even know how to google it right.