Haha I must be terrible at explaining today
@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