gpt4 book ai didi

julia - 如何在 Julia 中正确调用参数构造函数?

转载 作者:行者123 更新时间:2023-12-03 21:41:15 26 4
gpt4 key购买 nike

我想调用复合类型的构造函数WeightedPool1D但我两个都试过了 WeightedPool1D(mask)WeightedPool1D{Float64}(mask)但它没有用。
谢谢!
Julia 版本:1.6.1
我的代码:

# creating composite type
struct WeightedPool1D{T}
n::Int
c::Int
mask::Matrix{Bool}
weight::Matrix{T}
function WeightedPool1D(mask::Matrix{Bool}) where T
c, n = size(mask)
weight = randn(T, c, n) / n
new{T}(n, c, mask, weight)
end
end

# create argument
mask = zeros(Bool, 3, 3)
调用 w = WeightedPool1D(mask)给出错误
julia> w = WeightedPool1D(mask)
ERROR: UndefVarError: T not defined
调用 w = WeightedPool1D{Float64}(mask)给出错误
julia> w = WeightedPool1D{Float64}(mask)
ERROR: MethodError: no method matching WeightedPool1D{Float64}(::Matrix{Bool})

最佳答案

这里的问题是内部构造函数。没有任何东西(从输入到构造函数)定义什么 T应该。
如果你想要一个默认值 T ,说 Float64 ,可以定义以下内部构造函数

struct WeightedPool1D{T}
n::Int
c::Int
mask::Matrix{Bool}
weight::Matrix{T}

# General constructor for any T, call as WeightedPool1D{Float64}(...)
function WeightedPool1D{T}(mask::Matrix{Bool}) where T
c, n = size(mask)
weight = randn(T, c, n) / n
new{T}(n, c, mask, weight)
end

# Construtors that defines a default T, call as WeightedPool1D(...)
function WeightedPool1D(mask::Matrix{Bool})
return WeightedPool1D{Float64}(mask) # Calls the other constructor, now with T = Int
end
end
示例调用:
mask = zeros(Bool, 3, 3)

WeightedPool1D(mask)
WeightedPool1D{Float32}(mask)

关于julia - 如何在 Julia 中正确调用参数构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67565538/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com