How to create a matrix from given vectors
Mostrar comentarios más antiguos
I have a vector A= [ 2 4 1 3 ]
How can you create a matrix which are the length of the vector values with ones. the rest zeros?
i.e I want
B= [1 1 1 1; 1 1 0 1; 0 1 0 1; 0 1 0 0]
Regards
jason
Respuesta aceptada
Más respuestas (2)
Here is the obligatory one liner. It works whether or not A has a zero.
D = cumsum(ones(max(A),length(A))) <= A(ones(1,max(A)),:);
Or (slower but memory efficient):
D = bsxfun(@(x,y) x<=y,(1:max(A)).',A);
1 comentario
Andrei Bobrov
el 25 de Oct. de 2012
+1
Azzi Abdelmalek
el 25 de Oct. de 2012
Editada: Azzi Abdelmalek
el 25 de Oct. de 2012
A= [ 2 4 1 3 ];
n=length(A);
s=meshgrid(1:n);
out=cell2mat(arrayfun(@(x,y) y<=A(x),s,s','un',0))
5 comentarios
Jason
el 25 de Oct. de 2012
Azzi Abdelmalek
el 25 de Oct. de 2012
there are no 4, just one: out
Jason
el 25 de Oct. de 2012
Jason
el 25 de Oct. de 2012
Azzi Abdelmalek
el 25 de Oct. de 2012
just extract
out(:,1:3)
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!