How do we write a code for a periodic intermittent scalar function?
이전 댓글 표시
I would like to write a code of an periodic intermittent bounded control. I've tried to write it as a piecewise function but its not giving me type of output I want. Can someone help please? This what I have written
K = 0:0.01:1;
Pk =[];
m = 4; h = 0.1; T = 0.05;
for k = 1:length(K)
if (K(k) >= m*T & K(k) < m*T + h)
pk = 4;
elseif (K(k) >= m*T + h & K(k) < (m+1)*T)
pk = 0;
end
Pk = [Pk pk];
end
댓글 수: 4
madhan ravi
2018년 11월 9일
you need to explain what result you are expecting and why do you think the above code is wrong
Eric Mwanandiye
2018년 11월 9일
편집: Eric Mwanandiye
2018년 11월 9일
Eric Mwanandiye
2018년 11월 9일
Walter Roberson
2018년 11월 9일
And what do you expect instead?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

