create vector from each element it had

12 visualizaciones (últimos 30 días)
Maya Harel
Maya Harel el 9 de Jun. de 2020
Editada: Stephen23 el 9 de Jun. de 2020
Hi
Lets say I have a vector that goes: [x y z]
Im trying to create, if possible without a loop, the following vec: [1:x, 1:y, 1:z]
only I don't know who x y or z will ne, or how many elemnts will the first vec have
  2 comentarios
TADA
TADA el 9 de Jun. de 2020
What's wrong with your solution:
[1:x, 1:y, 1:z]
?
Maya Harel
Maya Harel el 9 de Jun. de 2020
the problem is that I don't define how many elements the first vec will have, It will ne detarmined randomly

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 9 de Jun. de 2020
Editada: Stephen23 el 9 de Jun. de 2020
Method one: nonzeros:
vec = [x,y,z];
tmp = 1:max(vec);
new = nonzeros((tmp(:)<=vec).*tmp(:)).' % requires >=R2016b
Method two: arrayfun:
new = cell2mat(arrayfun(@(n)1:n,vec,'uni',0))

Más respuestas (1)

David Hill
David Hill el 9 de Jun. de 2020
Editada: David Hill el 9 de Jun. de 2020
  1 comentario
Maya Harel
Maya Harel el 9 de Jun. de 2020
thank you, but I think I didn't make myself clear, I mean that I want the new vec to go like the following exemple:
oldVec = [3,4,2]
newVec = [1,2,3,1,2,3,4,1,2]

Iniciar sesión para comentar.

Categorías

Más información sobre App Building 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