<br><br><div class="gmail_quote">On Fri, Jan 8, 2010 at 5:19 PM, David Goldsmith <span dir="ltr"><<a href="mailto:d.l.goldsmith@gmail.com">d.l.goldsmith@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On Fri, Jan 8, 2010 at 1:40 PM, Charles R Harris<br>
<<a href="mailto:charlesr.harris@gmail.com">charlesr.harris@gmail.com</a>> wrote:<br>
><br>
> chebyshev.chebdomain is the default chebyshev domain and is [-1,1]. Maybe it<br>
> needs a bettter name? Note that it is integer; that isn't required, but it<br>
> makes it compatible with other types like Decimal that don't mix with<br>
> floats. Another possibility is to make it a function so I can document it,<br>
<br>
</div>That's "the problem" I'm working on. :-)<br>
<br></blockquote><div><br>There are four variables defined<br><br># Chebyshev default domain.<br>chebdomain = np.array([-1,1])<br><br># Chebyshev coefficients representing zero.<br>chebzero = np.array([0])<br><br># Chebyshev coefficients representing one.<br>
chebone = np.array([1])<br><br># Chebyshev coefficients representing the identity x.<br>chebx = np.array([0,1])<br><br>And corresponding ones in the polynomial module. I can make them all functions if that would help, I thought of doing that in the first place...<br>
<br>Chuck <br></div><br></div>