Fliping a value between zero and one
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Image Analyst
le 15 Fév 2013
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?
Réponse acceptée
Image Analyst
le 15 Fév 2013
Is this what you're looking for?
p=0;
for k = 1 : 5 % Here's the iterative loop it requested
clc;
% Here's the single line
p = ~p
pause(1);
end
fprintf('Done with demo!\n');
3 commentaires
Jan
le 15 Fév 2013
Alternatively, if p should keep its type DOUBLE:
p = 1 - p;
Image Analyst
le 15 Fév 2013
That also works for any value or p in between 0 and 1, like I asked about in my comment way up at the top. So perhaps this is the most general solution.
Plus de réponses (2)
Youssef Khmou
le 14 Fév 2013
Modifié(e) : Youssef Khmou
le 14 Fév 2013
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
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!