Borrar filtros
Borrar filtros

calculating size of column with specified value in the column

1 visualización (últimos 30 días)
Anu Sharma
Anu Sharma el 19 de Mzo. de 2022
Respondida: Torsten el 19 de Mzo. de 2022
For calculating the values of e1 == 1, the code is
D1 = e1(e1(:,2)==1);
r1 = size(D1);
DDDx = r1(1,:);
I want to calculate the values for comparing 50 values
For example
D2 = e1(e1(:,2)==2);
r2 = size(D2);
DDDx2 = r2(1,:);
D3 = e1(e1(:,2)==3);
r3 = size(D3);
DDDx3 = r3(1,:);
.
.
.
D50 = e1(e1(:,2)==50);
r50 = size(D50);
DDDx50 = r50(1,:);

Respuestas (1)

Torsten
Torsten el 19 de Mzo. de 2022
DDDx = zeros(50,1);
for i = 1:50
DDDx(i) = numel(e1(e1(:,2)==i));
end

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by