BULLSEYE Part 2: Reference Problem 18 BULLSEYE - MATLAB Cody - MATLAB Central

Problem 1642. BULLSEYE Part 2: Reference Problem 18 BULLSEYE

Difficulty:Rate

Given n (always odd), return output a that has concentric rings of the 1s and 0s around the center point. Examples:

 Input  n = 3
 Output a is [ 1 1 1 
               1 0 1
               1 1 1 ]
 Input  n = 5
 Output a is [    1     1     1     1     1
                  1     0     0     0     1
                  1     0     1     0     1
                  1     0     0     0     1
                  1     1     1     1     1]

Solution Stats

52.05% Correct | 47.95% Incorrect
Last Solution submitted on Oct 02, 2025

Problem Comments

Solution Comments

Show comments
MATLAB EXPO 2025 Registration is Now Open! November 12 – 13, 2025
Registration is now open for MathWorks annual virtual event MATLAB EXPO 2025...
0

Problem Recent Solvers139

Suggested Problems

More from this Author16

Problem Tags

Community Treasure Hunt

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

Start Hunting!