Problem 1546. Create matrix with Gray code

Output "g" should be a matrix of class double, with Gray reflected binary code.

Input "n" is number of bits.

Examples:

 n = 0,
 g = Empty matrix: 1-by-0
 n = 1,
 g = [0;1]
 n = 2,
 g = [0 0;0 1;1 1;1 0]

Solution Stats

35.65% Correct | 64.35% Incorrect
Last Solution submitted on Feb 12, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers34

Suggested Problems

More from this Author9

Problem Tags

Community Treasure Hunt

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

Start Hunting!