Filling different size vectors with NaN
45 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Inês Mendes
el 6 de Jul. de 2015
Comentada: Inês Mendes
el 6 de Jul. de 2015
Hi guys!
I am having some trouble filling in a vector with NaN.
I have 2 vectors with different sizes, and i want to make them the same size, by adding NaN in the positions that don't have any value..
For example:
v=[1;2;3;4];
and
j=[5;6];
I want j to become:
j=[5;6;NaN;NaN];
Can anyone help?
Thanks in advance!
Inês
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 6 de Jul. de 2015
v=[1;2;3;4]
j=[5;6]
n=max(numel(v),numel(j))
v(end+1:n)=nan
j(end+1:n)=nan
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!