필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
Cauli Vilela Ferreira
Cauli Vilela Ferreira 2020년 7월 2일
댓글: madhan ravi 2020년 7월 2일
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

채택된 답변

madhan ravi
madhan ravi 2020년 7월 2일
편집: madhan ravi 2020년 7월 2일
Increment with 2 from 2.
doc colon
  댓글 수: 2
Cauli Vilela Ferreira
Cauli Vilela Ferreira 2020년 7월 2일
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 2020년 7월 2일
ix = mod(VetorN, 2) ~= 0
VetorN(ix) = VetorN(ix) + 1

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by