フィルターのクリア

Hi..Is there any way to open .MAX extension file in matlab.

2 ビュー (過去 30 日間)
shrisha tv
shrisha tv 2019 年 2 月 16 日
コメント済み: shrisha tv 2019 年 2 月 19 日
please help me to open .MAX extension files.
  6 件のコメント
Walter Roberson
Walter Roberson 2019 年 2 月 18 日
There are character strings describing fields inside the file, but the character strings are variable length and do not appear to have a length count before them, so detection of \0 would have to be used to find their end. The format for any accompanying binary data for each field is not obvious.
I googled for a couple of the unusual strings, but I was not able to find any -- so if there is documentation then it is hidden away. I do not know enough about the topic to understand what most of the fields might mean, so I do not know what kind of values to expect in order to poke around to trying various binary conversions.
What kind of device (including manufacturer?) produced these files?
shrisha tv
shrisha tv 2019 年 2 月 19 日
thank you..
ya.. because of combination, it felt difficulty to read.

サインインしてコメントする。

回答 (1 件)

Steven Lord
Steven Lord 2019 年 2 月 18 日
If this is not a standard file format that MATLAB or another MathWorks product contains a function to read (which I believe is the case here) you have a couple options.
  1. Ask the author of the code/program that wrote the file to provide you with a function to read the file into MATLAB.
  2. Ask the author if they have code in some other language (C, C++, Fortran, Java, etc.) that you can call from MATLAB. See the "Using External Libraries" and "MATLAB API for Other Languages" sections on this documentation page for more information.
  3. Ask the author of the code/program for the specification of the file format and use the file I/O capabilities of MATLAB to write your own reader function. This may require you to use the low-level file I/O functions.
  4. Reverse engineer the specification of the file format and write your own reader function. This could be very difficult without some sort of Rosetta stone.
  5. Hire a consultant to do 3 or 4.
  6. Use the program that originally wrote the data to write the data to a new file in a standard file format for which a reader function already exists.
  1 件のコメント
shrisha tv
shrisha tv 2019 年 2 月 19 日
thank you sir.. I will go through it

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by