How to read this mtx file in matlab
36 ビュー (過去 30 日間)
古いコメントを表示
Hello.
How can I read the following mtx file in matlab? The main file is MatrixMarket format.
I don't know much about matlab codes. Thank you so much in advance.

0 件のコメント
回答 (1 件)
Mathieu NOE
2021 年 5 月 20 日
hello
this is a txt file with 3 columns and 1 header line
see example below
% demo
clc
clearvars;
% % load data
% [outdata,head] = readclm('myfile.mxt',3,1);
% alternative
fid=fopen('myfile.mxt');
e=textscan(fid,'%f %f %f','headerlines',1);
outdata=cell2mat(e);
4 件のコメント
Mathieu NOE
2021 年 6 月 14 日
What is the issue ? if it's related to the file extension, you can change the extension to .txt or .m , it should be accepted.
参考
カテゴリ
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!