文件名称:IndirectArrays.jl:索引或“查找”数组的Julia实现
文件大小:78KB
文件格式:ZIP
更新时间:2024-06-16 10:37:52
Julia
间接数组 IndirectArray是一种使用index和value表的组合对数据进行编码的数组。 每个元素都分配有自己的索引,该索引用于从value表中检索value 。 具体来说,如果A是IndirectArray ,则A[i,j...] = value[index[i,j,...]] 。 在其他用途中, IndirectArrays可以表示,有时也称为“颜色图图像”或“调色板图像”。 安装 Pkg . add ( " IndirectArrays " ) 用法 例如: using IndirectArrays, Colors colors = distinguishable_colors(6) index = rand(1:6, 32, 32) A = IndirectArray(index, colors) 其中只有6种颜色。 value数组可以是任何类型。 它不一
【文件预览】:
IndirectArrays.jl-master
----Project.toml(450B)
----.github()
--------workflows()
----test()
--------runtests.jl(2KB)
----randimage.png(71KB)
----src()
--------IndirectArrays.jl(3KB)
----LICENSE.md(1KB)
----.gitignore(29B)
----README.md(1KB)