Problem 44104. Hilbert Scan Algorithm

As Zig-Zag and Horizontal ... we have also a < Hilbert Scan > as shown in this article http://link.springer.com/chapter/10.1007/11821045_31 : expls:

input: x= [1 2; 3 4];

output:

y=[3 1 2 4]

input: x= [1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 15 16]

output:

y=[13 14 10 9 5 1 2 6 7 3 4 8 12 11 15 16]

Solution Stats

31.43% Correct | 68.57% Incorrect
Last Solution submitted on Dec 03, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers9

Suggested Problems

More from this Author14

Problem Tags

Community Treasure Hunt

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

Start Hunting!