Skip to content
#

algorithms

Algorithms are detailed sets of guidelines created for a computer program to complete tasks efficiently and thoroughly.

Here are 18,641 public repositories matching this topic...

FahimFBA
FahimFBA commented Nov 18, 2021

Hello, your project can be a great asset globally if you could add a translation to English. As a student of Computer Science and Engineering background, I am hyped for this project repository of yours, but, sadly, there is not any translated part in English. Therefore, I am unable to go through this.

Please let me know whether you have any plan of adding English translation or not in the upc

josecarlosweb
josecarlosweb commented Oct 15, 2021

What about create a design pattern directory with the most popular design patterns examples?
We can create some rules like: have to be an explanation about the design pattern, the structure and one real world example.
The directory can be:

(folder) Design Patterns
-- (folder) Abstract Factory
-- -- AbstractFactory.js
-- -- AbstractFactoryTest.js
-- -- REAME.md

I can send some :

poldap
poldap commented Aug 2, 2021

scipy.signal.bspline gives zero output for integer types. This also affects quadratic and cubic.

Reproducing code example:

An example of an incorrect result

>>> from scipy.signal import bspline, quadratic, cubic
>>> bspline(np.array([-3,-2,-1,0,1,2,3]), 6)
array([0, 0, 0, 0, 0, 0, 0])

What was expected

>>> bspline(np.array([-3,-2,-1,0,1,2,3]).astype(float), 6)
array
Wikipedia
Wikipedia