Fliping a value between zero and one
이전 댓글 표시
When p=0;
I have to use a loop to flip the value of p between 0 and 1 and each time it has to be different in a single line of code.
Thank you
댓글 수: 2
Image Analyst
2013년 2월 15일
What does the "When p=0;" mean? You only have to flip when p=0???
When you say "flip the value of p between 0 and 1" does that mean that p is either 0 or 1 only, or does it mean p can have a value between 0 and 1, like p=.426973 and flipping means inverting like flipped_p = 1-p?
Rooy
2013년 2월 15일
채택된 답변
추가 답변 (2개)
Youssef Khmou
2013년 2월 14일
편집: Youssef Khmou
2013년 2월 14일
your_vector=mod(0:1000,2); % single line code
for i=1:length(your_vector)
% YOUR CODE
fprintf('%d\n',your_vector(i))
pause(0.3)
end
Youssef Khmou
2013년 2월 14일
for i=1:N
if mod(i,2)==0
R(i)=1;
end
end
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!