Hello,
I want to build a type named TBSCM with tho parameter and I have problem with the constructor…
struct TBSCM{T,N}
data::Array{T,2}
function TBSCM{T,N}(s::Int) where T where N
new{T,N}(zeros(T,N,s))
end
end
s=10^6
a4=TBSCM{4}(s)
returns an error like it ignore the Ctor…
Thank you for your help.