I'm trying to find functionality in Julia similar to MATLAB's meshgrid
or ndgrid
. I know Julia has defined ndgrid
in the examples but when I try to use it I get the following error.
UndefVarError: ndgrid not defined
Anyone know either how to get the builtin ndgrid
function to work or possibly another function I haven't found or library that provides these methods (the builtin function would be preferred)? I'd rather not write my own in this case.
Thanks!
meshgrid
andndgrid
functions. However, I think that the proper way to do this would be by the creation of a lazy operator as output. Never got to it though. – Emptyinclude("$JULIA_HOME/../examples/ndgrid.jl")
or some such statement? – Enchantment