Coverage for chebpy/core/bndfun.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.10.2, created at 2025-08-07 10:30 +0000

1"""Implementation of functions on bounded intervals. 

2 

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""" 

7 

8from .classicfun import Classicfun 

9 

10 

11class Bndfun(Classicfun): 

12 """Class to approximate functions on bounded intervals [a,b].""" 

13 

14 pass