フィルターのクリア

Vector to Circle in Matrix

2 ビュー (過去 30 日間)
martin martin
martin martin 2019 年 3 月 14 日
回答済み: Akira Agata 2019 年 3 月 15 日
Hello guys, I am trying to fill the matrix (zeros) of values of vector into a circle shape.
A = zeros(50)
This is sketch of my intention, any idea how to fill point in circle?

採用された回答

Akira Agata
Akira Agata 2019 年 3 月 15 日
If you have Image Processing Toolbox, one solution would be like this:
A = zeros(50);
A(25,25) = 1;
D = bwdist(A);
idx = D <= 24;
A(idx) = 1;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by