Kristjan Onu wrote: > Hi, > > I noticed some oddities in the way the function ellipke from the > specfun package handles vector input. For example, > > ellipke([.1; .2]) > > completes successfully, whereas the following fails: > > ellipke([.1 .2]) > > I've modified ellipke.m to make both of the above work (patch > below). If you wish, I can apply the patch to the Octave-Forge > SourceForge repository myself, however, I don't currently have > developer access. My SourceForge username is konu. > The autoloaded special functions from gsl seem to work as a double check. a=ellint_Kcomp([.2 .1],0) a=ellint_Ecomp([.90 .1; .4 .5],0) etc...
Unfortunately there must be a interpretation/scaling error since they disagree with ellipke. I can look into it later if nobody has an explanation. RayR ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
