Replies: 11 comments
-
Thanks for the suggestion. Anyone interested in implemented |
Beta Was this translation helpful? Give feedback.
-
@josdejong I'll happily give it a go if it's still open? |
Beta Was this translation helpful? Give feedback.
-
Thanks for your offer Jared, that would be great. |
Beta Was this translation helpful? Give feedback.
-
@jwilber are you still interested in implementing |
Beta Was this translation helpful? Give feedback.
-
I'm happy to give it a crack if there's still no activity from @jwilber May I verify that this is the specification intended for |
Beta Was this translation helpful? Give feedback.
-
That looks good to me 👍 Also worth taking a look at the scipy docs: https://docs.scipy.org/doc/numpy/reference/generated/numpy.linspace.html The two look fairly similar but it would be worth seeing if they differ at all. |
Beta Was this translation helpful? Give feedback.
-
Thanks @matthras that would be great! As far as I know the API is quite straightforward and works the same in all major math applications: linspace(start, end [, num]) // end included Correct? We could discuss about the best default value for |
Beta Was this translation helpful? Give feedback.
-
There's two additional optional arguments in the Numpy implementation which look just as easy to implement (thanks for the link, @harrysarson!):
I'm not sure about Re: Default value for Let me know if it's preferred I ask questions at some Slack/Discord/Gitter/IRC/group chat, otherwise I'll keep commenting here with questions/updates. |
Beta Was this translation helpful? Give feedback.
-
I would argue that we should implement
As far as I know, this is the best place 😄 |
Beta Was this translation helpful? Give feedback.
-
Function skeleton has been written, I've got a solid idea of how the internals should look, then I'll figure out what tests should be written. Questions that I currently have:
I've noticed in I'm planning to test these over the weekend just to verify my thoughts/inferences, but figured I should leave my questions there in case I forget! (You can assume that I have an understanding of why BigNumber exists and the different arithmetic functions used for handling BigNumbers!) |
Beta Was this translation helpful? Give feedback.
-
Good questions @matthras .
|
Beta Was this translation helpful? Give feedback.
-
There seems to be nothing that truly emulates this behavior. Similar topic #61
I can kinda hack it with
math.range
but it's pretty hacky to get the exact matrix size you desire.Beta Was this translation helpful? Give feedback.
All reactions