How to force single column array?

Haha I must be terrible at explaining today :slight_smile:

@dawbarton I want it to be an Array{Float64,1}

I figured out my own solution:

function dimMaker(nRow,nCol)
    if nCol==1
        dim = (nRow,)
    elseif nCol==3
        dim = (nRow,nCol)
    end
    return dim
end

Then I use dim to make the zeros array.
Thanks for being patient with me.

Kind regards