How to Imorting a text file containig indexes and the coressponding elements of a matrix to matlab?

조회 수: 1 (최근 30일)
want to get a matrix from a text file that contains the corresponding elements and there indexes.

채택된 답변

Pavan Sahith
Pavan Sahith 2024년 6월 19일
편집: Pavan Sahith 2024년 6월 20일
Hello Himanshu,
I see that you are looking to import a matrix from a text file containing corresponding elements and their indices. Let's create a sample text file and see how to import it into MATLAB.
As I dont have any text file , I am creating sample.txt with some random data
% Create a sample file
data = [1, 1, 5.5; 1, 2, 6.3; 2, 1, 7.8; 2, 2, 8.1];
writematrix(data, 'sample.txt', 'Delimiter', ',');
To import this text file into MATLAB, you can use the 'readmatrix' function:
data = readmatrix('sample.txt');
then you can extract the indices and values, then populate a matrix accordingly by using a simple 'for' loop :
% Extract indices and values
row_idx = data(:, 1);
col_idx = data(:, 2);
values = data(:, 3);
% Determine the size of the matrix
max_row = max(row_idx);
max_col = max(col_idx);
% Initialize the matrix
matrix = zeros(max_row, max_col);
% Populate the matrix
for i = 1:length(values)
matrix(row_idx(i), col_idx(i)) = values(i);
end
% Display the matrix
disp(matrix);
you can refer to following MathWorks documentation to know more about
I hope this helps you complete your task.
  댓글 수: 2
HIMANSHU
HIMANSHU 2024년 6월 20일
Hello Pavan!
Thanks for answering
Your code is work fine but the matrix i am getting is too big, so it is showing a message that the matrix is too big(101 gb) for the physical memory.
Is there any way to create a sparse matrix without creating a full matrix.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2024년 6월 20일
이동: Walter Roberson 2024년 6월 20일
Use spalloc -- pass in the number of rows, number of columns, and the total number of entries, and get out a sparse matrix that you can then set individual elements using a loop.
Or, just use sparse passing in the row indices, column indices, and corresponding data values: this will construct the entire array in one call.
Just don't sparse() a partial matrix and then loop setting more elements than were previously allocated -- growing a sparse matrix is expensive.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by