If you want to ignore exactly the first 15 lines, you can use:

f = mopen("your file","r");
garbage = mgetl(f,15);
m = [];
while not meof(f)
    line = mgetl(f,1); // read one line
    lineNr = eval(tokens(line))'; // dont forget the '
    m = [m;lineNr]; // add one line to m
end

-----"users" <users-boun...@lists.scilab.org> escreveu: -----
Para: users@lists.scilab.org
De: simon_37
Enviado por: "users"
Data: 11/12/2013 01:50 PM
Assunto: Re: [Scilab-users] Put .txt data in matrix

It doesn't work to, I already try it.
It return me error 999



--
View this message in context: http://mailinglists.scilab.org/Put-txt-data-in-matrix-tp4028011p4028013.html
Sent from the Scilab users - Mailing Lists Archives mailing list archive at Nabble.com.
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to