-
-
Notifications
You must be signed in to change notification settings - Fork 655
Conversation
This definitely needs a better name. Maybe ChebyshevApprox or ChebFun? |
Also, the repo name should match the package name with |
It will include Fourier Fun eventually, so neither name is appropriate. How about FunctionApproximation? Sent from my iPad On 07/07/2013, at 0:57, Stefan Karpinski [email protected] wrote:
|
Let's call it something appropriate to the current functionality. If and when it takes on a broader scope, we can consider renaming it or splitting it into several pieces. |
Sheehan On 06/07/2013, at 3:06 PM, Stefan Karpinski [email protected] wrote:
|
Ok, let's call it FunctionApproximation.jl then. The name is long, but that's ok since it only needs to be used on import. |
I have no particular problem with the name, but, e.g., when using many packages, I tend to use import GZip
import Stats
import FuncationApproximation
# other package imports here
...
f = FunctionApproximation.Fun(exp,[-1,1])
... This gets a little long. Of course, one can do import FunctionApproximation
FA = FunctionApproximation
f = FA.Fun(exp,[-1,1]) I often do this, though it seems a little kludgy. See also: JuliaLang/julia#1255 |
That works well; you will want to make |
We might want to make import FunctionApproximation
const FA = FunctionApproximation except without binding FunctionApproximation to anything. I know it's not strictly necessary, but it would be rather convenient. I'm open to some reasonable abbreviation for this package name, but |
How about ApproxFun? Sent from my iPhone On 08/07/2013, at 3:56 PM, Stefan Karpinski [email protected] wrote:
|
I like it – especially since it's reminiscent of chebfun, which is what people will probably be most familiar with. |
+1 for import as |
+1 for new name and import as. |
OK Changed to ApproxFun. What do I do now? Sheehan On 08/07/2013, at 11:20 PM, Viral B. Shah [email protected] wrote:
|
You can either amend this commit and force push to this same pull request or you can open a new pull request. |
Merged as ApproxFun |
Adding the Funs package, for Chebyshev approximation