Ondřej Čertík

Results 1683 comments of Ondřej Čertík

I view #99 as a limited to mathematical constants like `pi`, `e` and such. The CODATA are physical constants, so I think it might be slightly different.

Yes, unfortunately we can't use their code. But we can at least learn from their thought process when designing their API. On Wed, Dec 25, 2019, at 4:18 AM, Ivan...

@Jim-215-Fisher Unfortunately `GSL` is GPL licensed, which prohibits its inclusion into `stdlib` which is MIT licensed.

@Jim-215-Fisher we should put it into the style guide, great idea. Here are some links where it was discussed in the past: * https://github.com/fortran-lang/stdlib/issues/220#issuecomment-663111227 * https://github.com/fortran-lang/stdlib/issues/14#issuecomment-570442716 * https://github.com/fortran-lang/stdlib/issues/229#issuecomment-693447968 * https://github.com/fortran-lang/stdlib/issues/135#issuecomment-597139437

The latest status is in the open issue and PR for a given proposal. We don't have a nice table summarizing it. On Wed, Sep 23, 2020, at 7:19 PM,...

@jvdp1 eventually we can support all the formats like SciPy does. It's quite a bit of work, and so for my own work I just did COO and CSR, since...

Thanks @sfilippone for the feedback! Indeed, I also suspect quicksort is not the best choice. @zbeekman, I would start with COO, CSR that we all agree we need. Then as...

@zbeekman yes, I have used `dstevd` for eigenvalues of a tridiagonal matrix. If you just need a regular solve, then for example `dptsv` will do it.

@ghwilliams the status of the discussion at this issue as I understand it is that there is a general agreement that we want this, and so now we need to...

In general most people agree to do both, have a low level procedural (no side effects) design, and then have an optional higher level OO design. I would recommend to...