Problem 169. Set a Soroban Abacus

Description

This problem is the inverse of Problem 136: Read a Soroban Abacus. Provided an N-digit integer, return a logical matrix of size 7xN that symbolizes the input number.

Example

    x = 10586;
    y = [ 1 1 0 0 0
          0 0 1 1 1
          1 0 0 1 1
          0 1 1 1 0
          1 1 1 1 1
          1 1 1 0 1
          1 1 1 1 1 ];

Solution Stats

42.4% Correct | 57.6% Incorrect
Last Solution submitted on Oct 06, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers36

Suggested Problems

More from this Author56

Community Treasure Hunt

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

Start Hunting!