Difference between revisions of "FP Laboratory 7"

From Marek Běhálek Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
<translate>
 
== List of lists ==
 
== List of lists ==
 +
</translate>
 +
 
<div style="float: right"> [[File:Video logo.png|80px|link=https://youtu.be/voiTk64SaQM]]</div>  
 
<div style="float: right"> [[File:Video logo.png|80px|link=https://youtu.be/voiTk64SaQM]]</div>  
 +
 +
<translate>
 
Consider following type representing picture:
 
Consider following type representing picture:
 +
</translate>
  
 
<syntaxhighlight lang="Haskell">type Pic = [String]</syntaxhighlight>
 
<syntaxhighlight lang="Haskell">type Pic = [String]</syntaxhighlight>
  
 +
<translate>
 
If you want to print this picture you can use:
 
If you want to print this picture you can use:
 +
</translate>
  
 
<syntaxhighlight lang="Haskell">
 
<syntaxhighlight lang="Haskell">
Line 12: Line 20:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
<translate>
 
Picture example:  
 
Picture example:  
 +
</translate>
  
 
<syntaxhighlight lang="Haskell">
 
<syntaxhighlight lang="Haskell">
Line 35: Line 45:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
<translate>
 
Create functions that:
 
Create functions that:
  
*Flips picture veriticaly and horizontaly.
+
*Flips picture veriticaly and horizontally.
 +
</translate>
 +
 
 
<syntaxhighlight lang="Haskell">
 
<syntaxhighlight lang="Haskell">
 
flipV :: Pic -> Pic
 
flipV :: Pic -> Pic
Line 76: Line 89:
 
<div style="clear:both"></div>
 
<div style="clear:both"></div>
  
 +
<translate>
 
*Place one picture above another.
 
*Place one picture above another.
 +
</translate>
 +
 
<syntaxhighlight lang="Haskell">above :: Pic -> Pic -> Pic</syntaxhighlight>
 
<syntaxhighlight lang="Haskell">above :: Pic -> Pic -> Pic</syntaxhighlight>
 
<syntaxhighlight lang="Haskell" class="myDark">
 
<syntaxhighlight lang="Haskell" class="myDark">
Line 105: Line 121:
 
<div style="clear:both"></div>
 
<div style="clear:both"></div>
  
 +
<translate>
 
*Place two pictures side by side (consider, that they have the same height).
 
*Place two pictures side by side (consider, that they have the same height).
 +
</translate>
 +
 
<syntaxhighlight lang="Haskell">sideBySide :: Pic -> Pic -> Pic</syntaxhighlight>
 
<syntaxhighlight lang="Haskell">sideBySide :: Pic -> Pic -> Pic</syntaxhighlight>
 
<syntaxhighlight lang="Haskell" class="myDark">
 
<syntaxhighlight lang="Haskell" class="myDark">
Line 134: Line 153:
 
<div style="clear:both"></div>
 
<div style="clear:both"></div>
  
*Rotate picture to the left and to the right. <div style="float: right"> [[File:Video logo.png|80px|link=https://youtu.be/l9qIHTFsEV0]]</div>  
+
<translate>
 +
*Rotate picture to the left and to the right. <div style="float: right"> [[File:Video logo.png|80px|link=https://youtu.be/l9qIHTFsEV0]]
 +
</translate>
 +
 
 +
</div>  
 
<syntaxhighlight lang="Haskell">
 
<syntaxhighlight lang="Haskell">
 
rotateR :: Pic -> Pic
 
rotateR :: Pic -> Pic
Line 186: Line 209:
 
<div style="clear:both"></div>
 
<div style="clear:both"></div>
  
 +
<translate>
 
*Increase every point in the picture n times.
 
*Increase every point in the picture n times.
 +
</translate>
 +
 
<syntaxhighlight lang="Haskell">zoom :: Int -> Pic -> Pic</syntaxhighlight>
 
<syntaxhighlight lang="Haskell">zoom :: Int -> Pic -> Pic</syntaxhighlight>
 
<syntaxhighlight lang="Haskell" class="myDark">
 
<syntaxhighlight lang="Haskell" class="myDark">

Revision as of 12:25, 20 October 2021

List of lists

Video logo.png

Consider following type representing picture:

type Pic = [String]

If you want to print this picture you can use:

pp :: Pic -> IO ()
pp x = putStr (concat (map (++"\n") x))

Picture example:

pic :: Pic
pic = [ "....#....",
        "...###...",
        "..#.#.#..",
        ".#..#..#.",
        "....#....",
        "....#....",
        "....#####"]
*Main> pp pic
....#....
...###...
..#.#.#..
.#..#..#.
....#....
....#....
....#####

Create functions that:

  • Flips picture veriticaly and horizontally.
flipV :: Pic -> Pic
flipH :: Pic -> Pic
*Main> pp(flipV pic)
....#....
...###...
..#.#.#..
.#..#..#.
....#....
....#....
#####....
*Main> pp(flipH pic)
....#####
....#....
....#....
.#..#..#.
..#.#.#..
...###...
....#....


flipV :: Pic -> Pic
flipV = map reverse 

flipV' :: Pic -> Pic
flipV' xs = [reverse x|x<-xs]

flipH :: Pic -> Pic
flipH = reverse
Try it!
  • Place one picture above another.
above :: Pic -> Pic -> Pic
*Main> pp(above pic pic)
....#....
...###...
..#.#.#..
.#..#..#.
....#....
....#....
....#####
....#....
...###...
..#.#.#..
.#..#..#.
....#....
....#....
....#####
above :: Pic -> Pic -> Pic
above x y = x ++ y
Try it!
  • Place two pictures side by side (consider, that they have the same height).
sideBySide :: Pic -> Pic -> Pic
*Main> pp(sideBySide pic pic)
....#........#....
...###......###...
..#.#.#....#.#.#..
.#..#..#..#..#..#.
....#........#....
....#........#....
....#####....#####
sideBySide :: Pic -> Pic -> Pic
sideBySide xs ys = map (\(x,y) -> x ++ y)(zip xs ys) 

sideBySide':: Pic -> Pic -> Pic
sideBySide' (x:xs) (y:ys) = (x ++ y) : sideBySide' xs ys
sideBySide' _ _ = []

sideBySide'' :: Pic -> Pic -> Pic
sideBySide'' = zipWith (++)
Try it!
  • Rotate picture to the left and to the right.
    Video logo.png
rotateR :: Pic -> Pic
rotateL :: Pic -> Pic
*Main> pp(rotateR pic)       
.......
...#...
....#..
.....#.
#######
#....#.
#...#..
#..#...
#......
*Main> pp(rotateL pic)
......#
...#..#
..#...#
.#....#
#######
.#.....
..#....
...#...
.......
toRow :: String -> Pic
toRow xs = map (\x -> [x]) xs -- [[x]|x<-xs]

rotateR :: Pic -> Pic
rotateR [x] = toRow x
rotateR (x:xs) = (rotateR xs) `sideBySide` (toRow x)

rotateR' :: Pic -> Pic
rotateR' x = foldl1 sideBySide (reverse (map toRow x))


rotateL :: Pic -> Pic
rotateL [x] = reverse(toRow x)
rotateL (x:xs) = reverse(toRow x) `sideBySide` (rotateL xs)

rotateL' :: Pic -> Pic
rotateL' x = foldl1 sideBySide (map (reverse.toRow) x)
Try it!
  • Increase every point in the picture n times.
zoom :: Int -> Pic -> Pic
*Main> pp(zoom 2 pic)
........##........
........##........
......######......
......######......
....##..##..##....
....##..##..##....
..##....##....##..
..##....##....##..
........##........
........##........
........##........
........##........
........##########
........##########
zoom :: Int -> Pic -> Pic
zoom n xs = [concat(map (replicate n) x)|x<-concat (map (replicate n) xs)]
Try it!