フィルターのクリア

How to create a wire of white dots

4 ビュー (過去 30 日間)
maria
maria 2015 年 7 月 7 日
編集済み: Thorsten 2015 年 7 月 7 日
Hello, I am quite clumsy in Matlab. I want to make a wire of white dots on a black surface. Something like that:
1 1 0 0 0 1 1 0 0 0 1 1; 1 1 0 0 0 1 1 0 0 0 1 1;1 1 0 0 0 1 0 0 0 1 1;
but in a matrix 2500x2500; if I use:
array=zeros(2500)
for i=1:4:2500;
for j=1:4:2500
array(i,j)=1;
end
end
then I only have one dot instead of 2; How to change it? What if I want 20 black pixels for 5 white?

採用された回答

Thorsten
Thorsten 2015 年 7 月 7 日
編集済み: Thorsten 2015 年 7 月 7 日
N = 2500;
line_element = [1 1 0 0 0];
I1 = repmat(line_element, N, N/numel(line_element));
line_element = [ones(1,5) zeros(1,20)];
I2 = repmat(line_element, N, N/numel(line_element));
imshow([I1 I2])

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by