Aman Singh
Aman Singh
Hi @Planeshifter, I've been reviewing the requirements for the Generalized Hyperbolic distribution and noticed that sub-issue #5487 is currently blocked because stdlib lacks the **Modified Bessel function of the second...
> Thanks for working on this, @Amansingh0807. > > I think my main concern with the proposed changes is that we assume that the examples work correctly and we don't...
Hi @prajjwalbajpai, this error usually pops up when the linter plugins are not fully updated after a pull. I would say just run npm install in the root folder to...
> [@Amansingh0807](https://github.com/Amansingh0807) [@prajjwalbajpai](https://github.com/prajjwalbajpai) The provided advice above is not correct. You should not be manually running `npm install` in the root project folder. As documented in the development guide, you...
Hi @Neerajpathak07, While working on `inv-two-pi` across all precisions, I also noticed that `inv-pi` currently exists only in my open PR for float16. If you think it makes sense, I...
Thanks for the clarification, @Neerajpathak07! Regarding the usefulness of `inv-pi`: 1/π appears quite frequently in numerical code, especially in : - probability distributions (e.g., Cauchy pdf: `1/(π * (1 +...
Hi @0PrashantYadav0! I want to contribute to this issue. I noticed that svariancewd (Single Precision) is unchecked in the list. Can I pick that up?
Hi @kgryte! I have implemented the C version of `asechf` (hyperbolic arcsecant for single-precision floats). Implementation uses the formula: asechf(x) = acosh(1/x) Since `acoshf` doesn't exist in stdlib yet, I'm...
Understood @kgryte. I agree that waiting for acoshf avoids future refactoring. I will keep this PR open and monitor the progress of acoshf. Once that lands, I will update this...
@kgryte I have addressed all your feedback: 1. **Macro Usage:** Switched `addon.c` to use the `@stdlib/math/base/napi/ternary` macro (and updated dependencies in `package.json`). 2. **Single-Precision:** Updated `main.c` to use single-precision functions...