Coverage for src/chebpy/bndfun.py: 100%
2 statements
« prev ^ index » next coverage.py v7.15.2, created at 2026-07-22 21:50 +0000
« prev ^ index » next coverage.py v7.15.2, created at 2026-07-22 21:50 +0000
1"""Implementation of functions on bounded intervals.
3This module provides the Bndfun class, which extends Classicfun to represent
4functions on bounded intervals [a,b]. It is a concrete implementation of the
5abstract Classicfun class, specifically designed for bounded domains.
6"""
8from .classicfun import Classicfun
11class Bndfun(Classicfun):
12 """Class to approximate functions on bounded intervals [a,b]."""