I have. CSV file, and the format is shown below:
mapping.csv
5188.40811,TMobileML 5131.40903,TMobileGregsapt 5119.40791,TMobileJonsapartment 5123.40762,TMobileRedhat
I want to store it in a 4 by 2 array, when I have a value, such as 5131.40903 (this is a "string" not an "int"), I want to find the display relation, which is TMobileGregsapt , But I meet two problems, firstly, I can't use csvread('mapping.csv') , it will have some error: (I think the problem may be 5131.40903 will be int when I use csvread, but TMobileGregsapt is a line ...)
??? Error using ==> dlmread at 145 Mismatch between file and format string. Trouble reading number from file (row 1, field 2) ==> TMobi Error in ==> csvread at 52 m=dlmread(filename, ',', r, c);
although I use dlmread('cell4.csv', ',') , it still has some error:
??? Error using ==> dlmread at 145 Mismatch between file and format string. Trouble reading number from file (row 1, field 2) ==> TMobi
The second problem is how easy it is to find the mapping relation, the naive method uses forloop to find the position of the array.
Thank you for your help:)