MATLAB: How to open such files “File B -ASCII” saved from MATLAB

text file

Hi guys,
A text file saved from MATLAB like this "save ./source_file/Results B -ASCII" how it can be open using which software or any ??
I apprecaite your help!

Best Answer

The -ASCII option saves a double array as a text file with space delimiters. This means:
  • Any text editor can open that text file.
  • Any application that can parse a text file containing numeric data separated with (multiple) space character delimiters can import that data.
The MS Excel file importing wizard also handles it without any problems.
As Guillaume pointed out, you should probably avoid using save anyway: its text file format is apparently designed to look nice for humans and not really for transferring data between applications.