Open joshichaitanya3 opened 2 years ago
I just realized that the above example isn't the greatest, since we can just do 0..1:(1/(N+1))
and it works, but there are other spots where it could be more useful.
If you want to do this you can do it with Matrix(List(range))/N
We might want to consider a constructor of type Matrix(range) (and Array(range)) to avoid the call to list first?
Nice
I am seeing something Amazing with this language. But the Question is How to Build Packages For It appreciated if You Guys Can Point Me With Just That :)
@eihabhala Thanks for the feedback! We are working on detailed information for developers, including how to build packages for our upcoming release.
Thanks 💐
As the recent issues point out, the Ranges are tricky with floats as spacing. It'd be nice to be able to do arithmetic on Ranges, so that we can have Ranges generated from integers and multiplied by the required spacing later on. Something like this
Alternatively or additionally, we could have a different kind of Range object going from
a
tob
in a fixed number of steps (like NumPy's linspace), may be with the notationa..b::N
or something?