Prolo-Klimper
Ein bisschen Vorbereitung für die nächste Session (wahrscheinlich heute) mit einer neu besaiteten Gitarre. Diesmal noch mal M3T, demnächst folgt eine weitere NST-Session. prolo-01 prolo-02 Ich bleibe am Ball. Am liebsten überall.¹¹ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ julia> table = collect(r*c for r in 1:5, c in 1:5) 5×5 Array{Int64,2}: 1 2 3 4 5 2 4 6 8 10 3 6 9 12 15 4 8 12 16 20 5 10 15 20 25 julia> circshift(table, (0, 11)) 5×5 Array{Int64,2}: 5 1 2 3 4 10 2 4 6 8 15 3 6 9 12 20 4 8 12 16 25 5 10 15 20 julia> circshift(table, (0, 11)) 5×5 Array{Int64,2}: 5 1 2 3 4 10 2 4 6 8 15 3 6 9 12 20 4 8 12 16 25 5 10 15 20 julia> circshift(table, (0, 2)) 5×5 Array{Int64,2}: 4 5 1 2 3 8 10 2 4 6 12 15 3 6 9 16 20 4 8 12 20 25 5 10 15 julia> rotr90(table) 5×5 Array{Int64,2}: 5 4 3 2 1 1