Metadata-Version: 2.4
Name: pclab4
Version: 4.0.2
Summary: Pedal Curves Lab Version 4
Home-page: https://pypi.org/project/pclab4/
Author: S_My
Author-email: mingyang3sun@hotmail.com
License: MIT License(Copyright (c) 2025-2026, S_My Programming Team & KitPy Developers)
Classifier: Operating System :: Microsoft :: Windows :: Windows 11
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
Requires-Dist: numpy>=1.26.4
Requires-Dist: matplotlib>=3.9.2
Requires-Dist: scipy>=1.13.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


pclab4
======

A Python Library of pedal curves.

How to use
----------
We recommend you to import `pclab4`:

  >>> import pclab4
  >>> pclab4.deriv(lambda x: x**3, 2)
  12.000099999999847
  
Use the built-in ``help`` function to view a function's docstring:

  >>> help(pclab4.deriv)
  ... # doctest: +SKIP
  
Viewing documentation using IPython
-----------------------------------
To see which functions are available in `pclab4`, type ``pclab4.<TAB>`` (where
``<TAB>`` refers to the TAB key), or use ``pclab4.*deriv*?<ENTER>`` (where 
``<ENTER>`` refers to the ENTER key) to narrow down the list.  To view the 
docstring for a function, use ``pclab4.deriv?<ENTER>`` (to view the docstring) 
and ``pclab4.deriv??<ENTER>`` (to view the source code).

We recommend exploring the docstrings using `IPython <https://ipython.org>`_, 
an advanced Python shell with TAB-completion and introspection capabilities. 
See above for further instructions.
  
Click `pclab4 Homepage <https://pypi.org/project/pclab4/>`_ to explore.
