Coverage for src / chebpy / bndfun.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-22 21:33 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-22 21:33 +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]."""
14 pass