MATLAB: How can i read these number from text file

text file

Good morning everyone, today i have question too. I will add Picture of Problem in order to better explain tro you. My question is how can i read numbers from txt file? As you see my Picture there are too many number and each column belongs to one Parameter. How can i say matlab that these column belongs to this Parameter and another column to another. Thanx for help

Best Answer

You could tell matlab upon importing that the data is semicolon separated (;, delimited as they call it).
try something like:
M = dlmread('yourfile.txt', ';')
Good luck.
Also, have a look here for more info!