Question about numpy.apply_along_axis

Question about numpy.apply_along_axis

par Juan Pablo Ruz Cuen,
Nombre de réponses : 1
The documentation for numpy.apply_along_axis  says it has the following syntaxis:

numpy_apply_along_axis (func1d , axis , arr , *args , **kwargs)

I'm a little confused with how the *args works when you need to send multiple arguments. I tried doing (func1d, axis = 0, arg_1,arg_2,...) but it's not working for more than 1 argument. Does anyone know if there is a special way to format multiple argument and send them as *args?

Thanks in advance!