Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. close all
  2. clear
  3. clc
  4.  
  5. axis([1 13 1 13]);
  6. a=1
  7.  
  8. for i=3:1:10
  9.  
  10. for j=3:1:10
  11.  
  12. if isequal(a,0)
  13. rectangle('Position',[j i 1 1], 'FaceColor',[.800 .800 .800])
  14. a=1;
  15. else
  16. rectangle('Position',[j i 1 1], 'FaceColor',[0 0 0])
  17. a=0;
  18. end
  19.  
  20. end
  21.  
  22. if isequal(a,0)
  23. a=1;
  24. else
  25. a=0;
  26. end
  27.  
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement