How to enter intermittent entries in a vector

1 visualización (últimos 30 días)
Waheeb Butt
Waheeb Butt el 22 de Nov. de 2020
Comentada: Waheeb Butt el 25 de Nov. de 2020
Hi, I need a bit of your help please. Consider I have a vector A = [a1 a2 a3 a4], and another vector B=zeros(2*length(A)). I want to put the entries of A into B as follows:
B = [a1 a2 0 0 a3 a4 0 0]. Intermittent entries. I hope I am able to convey clearly the requirement. Awaiting the kind response.

Respuesta aceptada

Nora Khaled
Nora Khaled el 22 de Nov. de 2020
a=1:1:6;
v=[];
for i=1:2:length(a)
v=[v a(i) a(i+1) 0 0] ;
end
v

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by