필터 지우기
필터 지우기

Required a mathematical logic.!

조회 수: 1 (최근 30일)
Nimisha
Nimisha 2016년 7월 11일
편집: Image Analyst 2016년 7월 11일
A = [1 0 1 0 0 0 1 1 1 0 1 0 1 0 1 1 1 0 0 1];
B = [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19];
I want a logic in which when A will be 1 as input, then output should be respective from B, But when input A comes as 0, then previous output of B should be followed when A were 1. I tried various if.. else loops and while loop, but not getting proper output! I also tried by simulink Pulse generator and clock"

채택된 답변

James Tursa
James Tursa 2016년 7월 11일
편집: James Tursa 2016년 7월 11일
E.g., using a simple loop:
result = zeros(size(B));
c = B(1); % Covers the case when A(1) = 0
n = numel(B);
for k=1:n
if( A(k) == 1 )
c = B(k);
end
result(k) = c;
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by