how can i open .out extension file in matlab?
16 ビュー (過去 30 日間)
古いコメントを表示
0 件のコメント
回答 (2 件)
Star Strider
2025 年 1 月 14 日
That depends on what is inside the file.
If it is a text file, you can use either readtable or readmatrix with the addition of FileType='text' to the argumentt list. See the readtable documentation section on FileType for those details, since other options are also available.
If it is a binary file, then you need to know how it was formatted. See the documentation on the fread function for those details.
If you believe it to be a MATLAB .mat file, you can use the load function with the addition of '-mat' to the argument list.
Beyond that, if you know what application created the file, go to the application website to see iif you can find a way to read it. Then, save that result to a format that MATLAB can read easily.
.
0 件のコメント
Walter Roberson
2025 年 1 月 25 日
".out" is not a standardized file extension. ".out" is used by many different programs, and contains anything from text printouts to binary forms of compiled objects.
".out" used to be a semi-popular file extension used by Fortran programs for arbitrary text output. Whether the text was structured or not was very variable.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Workspace Variables and MAT Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!