Clear Filters
Clear Filters

How to make a matrix of zeros and ones with a specific distance between each one?

3 views (last 30 days)
Hi!
I need to make a matrix of zeros and ones with a specific distance between each one. This distance is an input value, which means that the distance between one's it's variable.
Any suggestion?
Thanks

Accepted Answer

Bruno Luong
Bruno Luong on 3 Aug 2020
dmin1=3;
n=10;
A=zeros(n);
A(1:dmin1:end,1:dmin1:end)=1;
disp(A)
  1 Comment
Oliver Lestrange
Oliver Lestrange on 18 Aug 2020
Passing this to an image I get the 1's with just 1 pixel. How can I make the matrix bigger, in order to have more pixels, and has the 1's with more than 1 pixel?

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!