Concatenation problem with a loop
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
How would you concatenate the two different results for D?
>> for X=[1.5 1.7],
D=(X*440)*(1:1:ceil(2000/(X*440)))
end
D =
         660        1320        1980        2640
D =
         748        1496        2244
to look like
D =
          660        1320        1980        2640          748        1496        2244
0 comentarios
Respuesta aceptada
  Azzi Abdelmalek
      
      
 el 25 de Sept. de 2013
        
      Editada: Azzi Abdelmalek
      
      
 el 25 de Sept. de 2013
  
      X=[1.5 1.7];
D=[];
for k=1:numel(X)
  D=[D (X(k)*440)*(1:1:ceil(2000/(X(k)*440)))];
end
D
%or
X=[1.5 1.7];
D=cell2mat(arrayfun(@(y) (y*440)*(1:1:ceil(2000/(y*440))),X,'un',0))
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Creating and Concatenating Matrices 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!