Program that separates even and odd numbers and shows them in two vectors.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dionisio Mendoza
el 4 de Feb. de 2019
Respondida: Andrei Bobrov
el 4 de Feb. de 2019
The program must throw 100 in two vectors, in one the 50 pairs will be shown and in the other 50 odd. All this using the cilco for and conditions if they are necessary. I already got him to throw the numbers but to separate them.
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 4 de Feb. de 2019
n = (1:100)';
lo = rem(n,2)==1;
pares = n(~lo);
impares = n(lo);
0 comentarios
Más respuestas (1)
KSSV
el 4 de Feb. de 2019
A = magic(5) ;
A = A(:) ;
idx = mod(A,2)==0 ;
E = A(idx) ; % Even numbers
O = A(~idx) ; % Odd numbers
Ver también
Categorías
Más información sobre Fourier Analysis and Filtering 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!