i have a large matrix whose elements is 1 and 0; how to conver each row to decimal ,like bin2dec
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Roger
el 15 de Sept. de 2014
Comentada: Roger
el 15 de Sept. de 2014
i do it like this
if true
rownum = size(Qbinnum,1);
for i = 1:rownum
cgroup(i)=bin2dec(num2str(Qbinnum(i,:)));
end
end
as the matrix is big, so it takes a lot of seconds ,any way easier ,less time ways?
2 comentarios
Respuesta aceptada
Rick Rosson
el 15 de Sept. de 2014
N = size(Qbinnum,2);
k = ((N-1):-1:0)';
v = 2.^k;
cgroup = Qbinnum*v;
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!