How to read this mtx file in matlab
35 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Mathieu NOE
il 20 Mag 2021
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 Commenti
Mathieu NOE
il 14 Giu 2021
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.
Vedere anche
Categorie
Scopri di più su Workspace Variables and MAT Files in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!