save values in array
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
NA
el 16 de Mzo. de 2020
Comentada: Bhaskar R
el 16 de Mzo. de 2020
I have
A={[1,6,3,2],[3,5,6]};
all_el =[];
for i=1:length(A)
all_el(end)=A{i}
end
I want to have this result
all_ell=[1,2,3,5,6]
0 comentarios
Respuesta aceptada
Más respuestas (1)
Sriram Tadavarty
el 16 de Mzo. de 2020
Editada: Sriram Tadavarty
el 16 de Mzo. de 2020
Hi there,
It is not pretty clear as what you wanted to do.
To get the desired output, perform the following:
A={[1,6,3,2],[3,5,6]};
% With for loops
all_el =[];
for i=1:length(A)
all_el=[A{i} all_el];
end
all_el = unique(all_el);
% Without for loops
all_el = unique([all_el{:}])
Hope this helps.
Regards,
Sriram
0 comentarios
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading 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!