Hello, i'm trying to use an external library for certain things and i need somehow a 1:1 relation to certain input/output parameters:
*float
*int
I'm aware that the most promising thing is to do a type definition.
Is
type myiothing
input::Array{Float32,1}
output::Array{Int32,1}
n_points:Int32
end
the way to go, or is there something i'm missing (i have no clear
understanding, what Array{something,1} is creating only a pointer)?
Wishing a happy day,
Andreas
