Oyibo

Results 25 comments of Oyibo

@bc118 "significant figures" is a useful function, particularly where formatting matters. Integrating a feature like this into numpy could indeed reduce repetitive implementations. However, it's crucial to ensure that such...

@rgommers thank you for your response. Given the criteria provided, it appears unlikely the function "significant figures" meets the standards for inclusion into NumPy. Personally, I find the reference to...

I have changed the versioning in my virtual environment: - upgrade Python version from 3.10.13 => 3.11.5 - downgrade Scalene from version 1.5.31.1 (2023.09.15) => 1.5.19 (2023.01.06) Then I have...

Hey @ccordoba12 , Thank you for your interest in my feature request, "Automatic Import of System Variables in Spyder #20989." The reason behind my request was a specific issue I...

Hey @mrclary , Thank you for your effort. I have tried to set system variables in both ~/.bashrc and ~/.bash_profile and tested scripts in the terminal and using the IPython...

@guilhermeleobas if you call a gufunc from another jitted function you have to pass an output buffer, too. ``` import numpy as np from numba import guvectorize, njit @guvectorize(['(i8[:], i8[:],...

@gmarkall , thank you very much for your quick response. The generator function returns an iterable of 1d-numpy arrays. The error message for "np.vstack(gen())" `TypeError: arrays to stack must be...

It seems that numpy.fromiter is not supported in your current version of Numba. `TypingError: Use of unsupported NumPy function 'numpy.fromiter' or unsupported use of the function.` I have seen the...

Observation: numpy.asarray fails to generate 2D-array from list of 1D-arrays Converting the generator into a list of 1D-arrays allows numpy.asarray to return a 2D-array. Utilizing numpy.vstack would not be necessary...