MATLAB: Data (.txt) into matrix

matrix

I have a set of data and I wanna convert it to a matrix in Matlab, so that i can see the model.
The data comes from a different program, and it is organized in a line, where the first number means the x variable, the second means the y variable, and the ";" separates the point.
How can I make a matrix out of it so that I can plot the model?
I've attached the first data.
Thank you very much.

Best Answer

This works on the small file I attached here. If the format is not exactly what you have, maybe you can still figure out how to do it from this start.
fid = fopen('data.txt');
C = textscan(fid,'%f,%f;');
fclose(fid)