Skip to content

Commit b4acfe7

Browse files
committed
fix #698 : added missing ufuncs in API documentation
1 parent f7664cf commit b4acfe7

File tree

1 file changed

+130
-11
lines changed

1 file changed

+130
-11
lines changed

doc/source/api.rst

+130-11
Original file line numberDiff line numberDiff line change
@@ -444,17 +444,6 @@ Miscellaneous
444444
LArray.shift
445445
LArray.diff
446446
LArray.to_clipboard
447-
round
448-
floor
449-
ceil
450-
trunc
451-
sqrt
452-
absolute
453-
fabs
454-
where
455-
isnan
456-
isinf
457-
nan_to_num
458447

459448
.. _la_to_pandas:
460449

@@ -477,6 +466,136 @@ Plotting
477466

478467
LArray.plot
479468

469+
.. _api-ufuncs:
470+
471+
Utility Functions
472+
=================
473+
474+
* :ref:`ufuncs_misc`
475+
* :ref:`ufuncs_rounding`
476+
* :ref:`ufuncs_exp_log`
477+
* :ref:`ufuncs_trigo`
478+
* :ref:`ufuncs_hyper`
479+
* :ref:`ufuncs_complex`
480+
* :ref:`ufuncs_floating`
481+
482+
.. _ufuncs_misc:
483+
484+
Miscellaneous
485+
-------------
486+
487+
.. autosummary::
488+
:toctree: _generated/
489+
490+
where
491+
maximum
492+
minimum
493+
inverse
494+
interp
495+
convolve
496+
absolute
497+
fabs
498+
isnan
499+
isinf
500+
nan_to_num
501+
sqrt
502+
i0
503+
sinc
504+
505+
.. _ufuncs_rounding:
506+
507+
Rounding
508+
--------
509+
510+
.. autosummary::
511+
:toctree: _generated/
512+
513+
round
514+
floor
515+
ceil
516+
trunc
517+
rint
518+
fix
519+
520+
.. _ufuncs_exp_log:
521+
522+
Exponents And Logarithms
523+
------------------------
524+
525+
.. autosummary::
526+
:toctree: _generated/
527+
528+
exp
529+
expm1
530+
exp2
531+
log
532+
log10
533+
log2
534+
log1p
535+
logaddexp
536+
logaddexp2
537+
538+
.. _ufuncs_trigo:
539+
540+
Trigonometric functions
541+
-----------------------
542+
543+
.. autosummary::
544+
:toctree: _generated/
545+
546+
sin
547+
cos
548+
tan
549+
arcsin
550+
arccos
551+
arctan
552+
hypot
553+
arctan2
554+
degrees
555+
radians
556+
unwrap
557+
558+
.. _ufuncs_hyper:
559+
560+
Hyperbolic functions
561+
--------------------
562+
563+
.. autosummary::
564+
:toctree: _generated/
565+
566+
sinh
567+
cosh
568+
tanh
569+
arcsinh
570+
arccosh
571+
arctanh
572+
573+
.. _ufuncs_complex:
574+
575+
Complex Numbers
576+
---------------
577+
578+
.. autosummary::
579+
:toctree: _generated/
580+
581+
angle
582+
real
583+
imag
584+
conj
585+
586+
.. _ufuncs_floating:
587+
588+
Floating Point Routines
589+
-----------------------
590+
591+
.. autosummary::
592+
:toctree: _generated/
593+
594+
signbit
595+
copysign
596+
frexp
597+
ldexp
598+
480599
.. _api-metadata:
481600

482601
Metadata

0 commit comments

Comments
 (0)