Borrar filtros
Borrar filtros

what can I do to VetorN always be an even number.

1 visualización (últimos 30 días)
Cauli Vilela Ferreira
Cauli Vilela Ferreira el 2 de Jul. de 2020
Comentada: madhan ravi el 2 de Jul. de 2020
What can I do to VetorN always be an even number?
N = 40; % number of discretization points
in = 5; % number of inputs
VetorN = fix( (N * sqrt(2) .^ (0 : in) ) );
MD0 = zeros(1,length(VetorN));
for k = 1 : numel(VetorN)
MD0(k) = VetorN(k) * 3;
end
VetorN
MD0

Respuesta aceptada

madhan ravi
madhan ravi el 2 de Jul. de 2020
Editada: madhan ravi el 2 de Jul. de 2020
Increment with 2 from 2.
doc colon
  2 comentarios
Cauli Vilela Ferreira
Cauli Vilela Ferreira el 2 de Jul. de 2020
If you look at VetorN (1,4), you will see the result 113, and in more diverse 'N' this happens, which you can do to always give even results for any value of N
madhan ravi
madhan ravi el 2 de Jul. de 2020
ix = mod(VetorN, 2) ~= 0
VetorN(ix) = VetorN(ix) + 1

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB 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