How to Imorting a text file containig indexes and the coressponding elements of a matrix to matlab?
1 view (last 30 days)
Show older comments
want to get a matrix from a text file that contains the corresponding elements and there indexes.
0 Comments
Accepted Answer
Pavan Sahith
on 19 Jun 2024
Edited: Pavan Sahith
on 20 Jun 2024
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 Comments
More Answers (1)
Walter Roberson
on 20 Jun 2024
Moved: Walter Roberson
on 20 Jun 2024
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.
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!