- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找 repa 库中可能已经存在的函数。我想要一个功能:
用 3x3 窗口映射 min
函数:
| 1 2 3 4 3 4 5 6 7 2 7 8 9 4 2 5 4 8 1 6 8 5 3 3 2 |
Would return:
| 1 1 2 2 2 1 1 2 2 2 4 4 1 1 1 4 3 1 1 1 4 3 1 1 1 |
Note that I'm using a scheme akin to the BoundClamp constructor in Data.Array.Repa.Stencil
. This isn't a stencil convolution, i.e. it is not applying a stencil to every element of a 2D array. Instead, it is performing a function at each window on the array, with out-of-range elements at the edges being assigned the closest value at the edge of the 2D array.
The function might look something like:
mapF
:: Source r a
=> Boundary a -- ^ How to handle the boundary of the array.
-> (Int,Int) -- ^ window size in the X and Y direction.
-> (Array r DIM2 a -> b) -- ^ function over window e.g. to return the minimum value.
-> Array r DIM2 a -- ^ Array to apply function to.
-> Array r DIM2 b
这是已经存在的东西,还是编写起来微不足道的东西?
最佳答案
我对我的 repa 生疏了,但相信你可以使用 traverse
并手动检测数组边界。考虑类型:
traverse ::
(Source r a, Shape sh, Shape sh') =>
Array r sh a
-> (sh -> sh') -> ((sh -> a) -> sh' -> b) -> Array D sh' b
该函数采用原始数组、一个生成新形状的函数、一个采用查找函数和索引生成新值的函数,并生成新的(延迟的)数组。
一个简单的解决方案是检查索引的所有邻居,使用 min
和 max
控制边界:
import qualified Data.Array.Repa as R
import Data.Array.Repa (Z(..), traverse, fromListUnboxed, toList, (:.)(..))
import Prelude
import Data.List.Split
main = do let a = fromListUnboxed (Z :. h :. w) ( [1..6] ++ [2..7] ++ [3..8] ++ [4..9] ++ [5..10] :: [Int])
r = traverse a id (\f (Z :. y :. x) -> minimum [f (Z :. yi :. xi) | xi <- idx w x, yi <- idx h y])
printArray a
printArray r
where
idx b i = map (bound b) [i, i+1, i-1]
bound b = min (b-1) . max 0
w = 6 :: Int
h = 5 :: Int
printArray = putStrLn . unlines . map show . chunksOf w . toList
反对此解决方案的主要原因是性能(对相同数字进行多次比较,应静态消除许多边界检查)。 OTOH,您的问题只要求一个简单的解决方案,似乎并不过分关注性能。
如果 Repa 内置了更快的解决方案,我也很感兴趣。
关于haskell - 在具有边界情况的 repa 数组上映射窗口函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23612655/
两个相关的问题。 有没有 repa 的可变(ST monad)实现的原因?数组?相当于 Data.Vector.Mutable但有一个形状。 与此相关,应该如何在未装箱的表示中实现动态编程算法(从 相
我在 Haskell 库 Repa 中开发了一个如下定义的累积求和函数。但是,当将此功能与转置操作结合使用时,我遇到了一个问题。以下所有 3 项操作都需要不到一秒钟的时间: cumsum $ cums
在 haskell 中使用 repa,有没有一种方法可以打印矩阵,以便它们的格式很好,矩阵行位于单独的行上(大多数数值计算环境(如 R 或 matlab)的默认设置)? 我可以写一个,但它似乎已经存在
我真的很喜欢 Repa 的界面,即使它的并发能力如何。我实际上需要 repa 的数组是连续的,因为我的数组相对较小,并且它们的并行化是无用的,甚至是有害的。 但是,我确实在程序中使用了并行化,因此我将
以下代码会产生(可怕的)“嵌套并行性”错误 repa-3.4.0.1 : import Control.Monad.Identity (runIdentity, liftM) import Data.
在数值 Haskell Repa 教程中 Wiki ,有一段文字如下(用于上下文): 10.1 Fusion, and why you need it Repa depends critically
最好的制作方法是什么 type Configuration = Array DIM1 (Double, Double, Double) Read 的一个实例?所以后来我可以得出 data Simula
我想知道repa中是否有(//)的类似物? 无法并行化的数组转换需要它。例如,如果函数需要整个数组来更改数组的单个条目,然后将其应用于新数组等等(并且它应该按顺序运行)。 最佳答案 (//)可以用Da
问题 我试图了解 Repa工作,我从 Repa Examples 得到一个“模糊”示例代码。包裹。代码使用 stencil2 Quasi Quote : [stencil2| 2 4 5 4
我正在编写一个生成图像的程序,我想将其带入 Repa 数组。我目前使用的类型: data Colour = Colour Double Double Double 来表示像素,我有一个(可能效率低下但
我想实现类似于标准数组包中的有界数组但使用 repa 数组的东西。 实现这一目标的好方法是什么? 这是我尝试过的,但必须有比将所有内容包装在检查边界的自定义函数中更好的方法: import Data
假设我想使用有限差分法为看涨期权定价 然后再做以下工作: import Data.Array.Repa as Repa r, sigma, k, t, xMax, deltaX, deltaT ::
我使用 Euler symplectic method 编写了太阳系外行星的模拟。并使用 repa 和 b) 使用 yarr 实现了这一点。 yarr seems to perform about x
在我最近的 work与 Gibbs sampling ,我一直在充分利用 RVar 在我看来,它为随机数生成提供了一个近乎理想的接口(interface)。遗憾的是,由于无法在 map 中使用 mon
我正在尝试使用 Repa 实现累积和函数以计算积分图像。我当前的实现如下所示: cumsum :: (Elt a, Num a) => Array DIM2 a -> Array DIM2 a cum
我正在从磁盘加载 RGB 图像 JuicyPixels-repa 。不幸的是,图像的数组表示是 Array F DIM3 Word8其中内部维度是 RGB 像素。这与现有的repa有点不兼容。 RGB
假设我想将一个函数映射到一个数组上,但该函数的类型不仅仅是 a -> b但 a -> 整数 -> b即该函数还需要一个索引。我该怎么做? 最佳答案 简短回答,使用遍历。 更长的例子: import q
问题 我正在寻找 repa 库中可能已经存在的函数。我想要一个功能: 接受一个二维数组 指定窗口大小的两个整数 在二维数组上给定大小的每个窗口中,计算一个新值,例如此特定窗口中的小值。 例子 用 3x
Repa的所有归约函数折叠回与数组内容相同的类型。例如: foldAllP :: (Shape sh, Source r a, Elt a, Unbox a, Monad m) => (a -> a
在 GNU Octave 中此代码 - [e, ix] = min(X); 将返回最小元素及其位置。 如何在 repa 中实现任意二进制函数? 这是我想到的: min x = z $ foldl' f
我是一名优秀的程序员,十分优秀!