For a matrix with an unknown number of rows, how to find the number of rows n and transform it into n matrices.
4 views (last 30 days)
Show older comments
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/457600/image.png)
8 Comments
Accepted Answer
Ameer Hamza
on 11 Dec 2020
Edited: Ameer Hamza
on 11 Dec 2020
You can find the number of rows in a matrix using size()
data1;
n = size(data,1)
or height() [only in R2020b and later]
data1;
n = height(data)
The second part of your question about transforming it into a matrix is not clear.
0 Comments
More Answers (1)
Ameer Hamza
on 11 Dec 2020
Edited: Ameer Hamza
on 11 Dec 2020
I guess you are trying to do something like this
rows = data1(:,2);
cols = data1(:,1);
M = zeros(max(rows), max(cols));
idx = sub2ind(size(M), rows, cols);
M(idx) = 1;
Result
>> imshow(M)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/457650/image.png)
4 Comments
Ameer Hamza
on 11 Dec 2020
You can use maxk() to get two largest values. For example
maxk(data1, 2)
gives 2 highest values in both columns.
See Also
Categories
Find more on NaNs 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!