Filter löschen
Filter löschen

For a matrix with an unknown number of rows, how to find the number of rows n and transform it into n matrices.

5 Ansichten (letzte 30 Tage)
  8 Kommentare
Wesley
Wesley am 11 Dez. 2020
In so much data, find the largest y1, y2 and the coordinates of their respective points.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 11 Dez. 2020
Bearbeitet: Ameer Hamza am 11 Dez. 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.

Weitere Antworten (1)

Ameer Hamza
Ameer Hamza am 11 Dez. 2020
Bearbeitet: Ameer Hamza am 11 Dez. 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)
  4 Kommentare
Ameer Hamza
Ameer Hamza am 11 Dez. 2020
You can use maxk() to get two largest values. For example
maxk(data1, 2)
gives 2 highest values in both columns.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 3-D Scene Control finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by