I want to read a row with numeric data from a file which contains one text line and few lines with numeric data. I have tried this by using fopen and textscan(as all string value) command in MATLAB. After loading all the data and trying to do any mathematical operation it is showing the following error.
Undefined function or method 'plus' for input arguments of type 'cell'.
I'm trying to loading the following file which contains following data:
K V M UV JV CI SI JRM MRJ MIM JIJ VB UB
90000 0 0 0 0 0 0 0 10800 216000 205200 226800 205200 431940 215970 215970
165026 122 122 99 23 105 7 27 10811 215874 275166 226800 205200 431940 215970 215970
165027 132 122 49 23 115 9 97 10911 215674 275166 226800 205200 431940 215970 215970
165028 142 122 79 23 155 7 107 10711 215774 225166 226800 205200 431940 215970 215970
I require only the numerical data of 3rd row for my use.Please help me.
Thank you for your help in this regards. Deepak