<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general">
    <title>gmane.comp.mathematics.maxima.general</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38274"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38273"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38272"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38271"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38270"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38269"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38268"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38267"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38266"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38265"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38264"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38263"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38262"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38261"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38260"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38259"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38258"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38257"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38256"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38255"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38274">
    <title>Re: fit nonlinear model to data - better way to code it?</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38274</link>
    <description>&lt;pre&gt;If I remember correctly, parallel substitution

[p1,p2,p3]: ans[1]

was added a few years ago by Robert, but function ev() has not been modified
to accept a similar syntax:

p1, [p1,p2,p3]=[3,4,5];

You still have to use the syntax:

   p1, [p1=3, p2=4, p=5];

and the same goes for subst:

   subst([p1=3, p2=4, p=5], p1);

rather than

   subst([p1,p2,p3]=[3,4,5],p1);

which is not implemented yet.

Regards,
Jaime
&lt;/pre&gt;</description>
    <dc:creator>Jaime Villate</dc:creator>
    <dc:date>2012-05-18T12:03:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38273">
    <title>implicit_taylor and implicit_derivative without solve</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38273</link>
    <description>&lt;pre&gt;One may compute Taylor's polynom for implicit function (and therefore 
compute implicit_derivative) without solve equations.

F - an expression on x[1],x[2],... and y
a - list - the fixed point x
b - number - the fixed value y

F(a,b) must be 0

n - the degree of Taylor's polynom


my_implicit_taylor(F,a,b,n):=block(
     [x:makelist(x[i],i,length(a)),dx:makelist(dx[i],i,length(a)),D,df],
     if is(ev(F,x:a,y:b)#0) then
         return("Unable to compute taylor polynom: F(a,b)#0"),
     diff(F,y),
     D:ev(%%,x:a,y:b),
     if is(D=0) then
         return("Unable to compute taylor polynom: D=0"),
     F:taylor(ev(F,x:a+dx,y:b+dy),endcons(dy,dx),0,n),
     df:0,
     for k:1 thru n do df:df-1/D*expand(taylor(ev(F,dy:df),dx,0,k)),
     expand(b+df)
)$

my_implicit_taylor(x[1]-log(y),[0],1,7);


For implicit vector-function:

F - list of expressions on x[1],... and y[1],...
a - list
b - list

my_implicit_taylor(F,a,b,n):=block(
     [x:makelist(x[i],i,length(a)), y:makelist(y[i],i,length(b)),
dx:makelist(dx[i&lt;/pre&gt;</description>
    <dc:creator>Evgeniy Maevskiy</dc:creator>
    <dc:date>2012-05-18T11:56:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38272">
    <title>More on how to print complicated objects...</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38272</link>
    <description>&lt;pre&gt;Hi,

Another question I've been wondering about is exactly what to
display. That is, if you have some expression EXPR, there seem to be two
ways to output it in Maxima: either just printing it or calling grind on
it.

Am I right in thinking that grind() is conceptually equivalent to print
in Lisp with *print-readably* true, and that the usual display is more
similar to princ?

If so, I can merrily elide details in my dimension function for my
objects (however it gets invoked), and ensure that they all get output
by grind().

Do I have the right model here?

Rupert
_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Rupert Swarbrick</dc:creator>
    <dc:date>2012-05-18T08:47:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38271">
    <title>Re: Complicated objects in Maxima</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38271</link>
    <description>&lt;pre&gt;
Something like the following seems to work.

Rupert

_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Rupert Swarbrick</dc:creator>
    <dc:date>2012-05-18T08:42:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38270">
    <title>Re: fit nonlinear model to data - better way to code it?</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38270</link>
    <description>&lt;pre&gt;
Hmm, I was going to suggest that

  ev(f(x), [p1,p2,p3] = ans[1])

should work, but surprisingly it doesn't. For example:

  (%i14) p1, [p1,p2,p3]=[3,4,5];
  (%o14)                                p1

Does anyone know if there is a reason for this? It seems at odds with

  (%i15) [p1,p2,p3]: ans[1];
  (%o15)   [- .2694298415835076, - .4248176441471781, 1.331747718996615]
  (%i16) p1;
  (%o16)                        - .2694298415835076


Rupert
_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Rupert Swarbrick</dc:creator>
    <dc:date>2012-05-18T08:24:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38269">
    <title>Package NumericalIO</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38269</link>
    <description>&lt;pre&gt;It might be useful ...

1) ... to rewrite function read_list and others for reading list (array, 
matrix) of expressions (not only of numbers).

write_data(
   matrix([2/5,3/7,-1/2],[0.5,-1.247,12.57]),
   "D:/Compmath/temp_matrix", comma
)$

- it works correctly

read_matrix("D:/Compmath/temp_matrix", comma);

- returns a rubbish

my_read_matrix(fn):=block([f,A,s],
     if (file_search(fn)=fn) then (
         f:openr(fn),
         A:matrix(),
         while (s:readline(f))#false do
             A:addrow(A,eval_string(concat("[",s,"]")))
     ),
     A
)$

my_read_matrix("D:/Compmath/temp_matrix");

- works correctly

2) ... to add some functions for write and read arbitrary text-file, for 
example:

(defun $fwrite (f &amp;amp;rest c)
     (with-open-file (stream f :direction :output)
         (loop for s in c
             do (write-line s stream))))

Usage:

fwrite("D:/Compmath/temp_file.txt",
     "a string",
     "another string",
     "again another string"
)$
&lt;/pre&gt;</description>
    <dc:creator>Evgeniy Maevskiy</dc:creator>
    <dc:date>2012-05-18T08:37:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38268">
    <title>Re: wxdraw2d</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38268</link>
    <description>&lt;pre&gt;Hi:

I just wanted to let you know I was able to remember the link.  The new 
draw.lisp fixes this error too.  Thanks for working on it.

Richard


-----Original Message----- 
From: Richard Hennessy
Sent: Thursday, May 17, 2012 7:25 PM
To: biomates&amp;lt; at &amp;gt;telefonica.net ; Andrej Vodopivec
Cc: Maxima List
Subject: Re: [Maxima] wxdraw2d

Hi Mario and Andrej:

Thanks, I tried Andrej's solution and that worked and I want to try yours.
Can you post the link to git?  I had it bookmarked, but I lost some of my
bookmarks recently and I don't remember how to get to git.

Rich


-----Original Message----- 
From: Mario Rodriguez
Sent: Thursday, May 17, 2012 7:58 AM
To: Andrej Vodopivec
Cc: Maxima List
Subject: Re: [Maxima] wxdraw2d

El mié, 16-05-2012 a las 00:27 +0200, Mario Rodriguez escribió:



I've found a workaround for this problem, with some help from the
Gnuplot team.

Changes have been uploaded to the git repository one minute ago.

wxdraw?d should now work both in 4.6 and 4.4 versions.

(Sorry, Richard, for the d&lt;/pre&gt;</description>
    <dc:creator>Richard Hennessy</dc:creator>
    <dc:date>2012-05-18T06:05:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38267">
    <title>transcendentals, zero denominators, Haskell</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38267</link>
    <description>&lt;pre&gt;I don't follow  all this,but I will look at it more
http://hackage.haskell.org/packages/archive/numbers/latest/doc/html/src/Data-Number-FixedFunctions.html#line-142
&lt;/pre&gt;</description>
    <dc:creator>Richard Fateman</dc:creator>
    <dc:date>2012-05-18T05:39:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38266">
    <title>Re: Multiplying out (noncommutative) exponentials</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38266</link>
    <description>&lt;pre&gt;A simpler way to expand non-commutative powers and products if it's OK to
also expand commutative ones:

      dot_expand(ex) := block([dotexptsimp:false],expand(ex))$

I should have mentioned in the email below that Maxima does not understand
much about these non-unique non-commutative products, so it's often a good
idea to use dot_expand:

    is( equal( a . (b . a)^^2 . b, (a.b)^^3 ) )   =&amp;gt;  unknown

but

    is( equal( dot_expand( a . (b . a)^^2 . b) , dot_expand( (a.b)^^3 ) ) )
  =&amp;gt;  true

On the other hand, I don't think Maxima has any built-in way of doing
(a.b)^^-1 =&amp;gt; b^^-1 . a^^-1, so I think you'll need to write your own code
for, e.g. b.(a.b)^^-1 == a

               -s

On Thu, May 17, 2012 at 3:31 PM, Stavros Macrakis &amp;lt;macrakis&amp;lt; at &amp;gt;alum.mit.edu&amp;gt;wrote:

_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Stavros Macrakis</dc:creator>
    <dc:date>2012-05-18T05:09:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38265">
    <title>Re: Multiplying out (noncommutative) exponentials</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38265</link>
    <description>&lt;pre&gt;

Checked my files ... sure enough, there are notes and code fragments, but
nothing very useful....

           -s
_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Stavros Macrakis</dc:creator>
    <dc:date>2012-05-18T02:43:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38264">
    <title>Re: Complicated objects in Maxima</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38264</link>
    <description>&lt;pre&gt;

Well, perhaps if all you do is "carry them around", but if you start using
them in expressions, I am pretty sure that most parts of Maxima will assume
that a non-numeric atom is a symbolic variable (a Lisp symbol) without
explicitly testing for it, and it will probably be assumed real.  Call such
an 'opaque object' Q; then Q-Q =&amp;gt; 0, Q*Q =&amp;gt; Q^2, etc. Clearly this is not
correct if Q is say an interval object.

But if you *don't* use these objects in algebraic expressions, you're
probably OK, though you should really have clean input and output syntax
for them, unlike say the current way Lisp arrays display.

           -s
_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Stavros Macrakis</dc:creator>
    <dc:date>2012-05-18T02:33:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38263">
    <title>Re: Complicated objects in Maxima</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38263</link>
    <description>&lt;pre&gt;

Well, in a sense, there isn't a problem; non-cons atoms (e.g. arrays,
hash tables) are pretty much inert in Maxima. So if the goal is just to
construct such things and then carry them around, it seems like Maxima
would be happy enough with that.

I'd be interested to hear what Rupert has in mind when he says he wants
to use CLOS. Maybe what he wants to do is within the realm of Maxima as
it stands, maybe not.


That would work too.



Well, I wouldn't want to replace the existing defstruct unless we have
a working reimplementation in hand.

Incidentally, if you want to give a sketch of introducing methods into
the existing defstruct, I would be interested to hear about it.

best

Robert Dodier
&lt;/pre&gt;</description>
    <dc:creator>Robert Dodier</dc:creator>
    <dc:date>2012-05-18T02:08:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38262">
    <title>Re: Complicated objects in Maxima</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38262</link>
    <description>&lt;pre&gt;

Well, I can't really tell what's at stake yet. Why don't you post your
patch so others can try it out. I'll give it a try.

best

Robert Dodier
&lt;/pre&gt;</description>
    <dc:creator>Robert Dodier</dc:creator>
    <dc:date>2012-05-18T01:28:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38261">
    <title>Re: Complicated objects in Maxima</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38261</link>
    <description>&lt;pre&gt;

Hmm, that sounds interesting. How would that work? What is an example?

best

Robert Dodier
&lt;/pre&gt;</description>
    <dc:creator>Robert Dodier</dc:creator>
    <dc:date>2012-05-18T01:26:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38260">
    <title>Re: fit nonlinear model to data - better way to code it?</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38260</link>
    <description>&lt;pre&gt;




If I do it that way, it breaks the following line of code:  trendline: ev(f(x),p=ans[1]);




________________________________
 From: Raymond Toy &amp;lt;toy.raymond&amp;lt; at &amp;gt;gmail.com&amp;gt;
To: Ether Jones &amp;lt;maxima&amp;lt; at &amp;gt;etherjones.us&amp;gt; 
Cc: maxima &amp;lt;maxima&amp;lt; at &amp;gt;math.utexas.edu&amp;gt; 
Sent: Thursday, May 17, 2012 7:36 PM
Subject: Re: [Maxima] fit nonlinear model to data - better way to code it?
 




On Thu, May 17, 2012 at 12:25 PM, Ether Jones &amp;lt;maxima&amp;lt; at &amp;gt;etherjones.us&amp;gt; wrote:



I guess this actually works, but p is supposed to be a list of the parameters and f(x) should be an expression containing the parameters:

f(x) := p1 + p2/(x-p3)

minpack(f(x)-y,[p1,p2,p3],guess);

Ray_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Ether Jones</dc:creator>
    <dc:date>2012-05-18T00:47:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38259">
    <title>Re: Complicated objects in Maxima</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38259</link>
    <description>&lt;pre&gt;
   defstruct stuff usually does not use lists, unless you specify that.
   It uses some kind
   of packed array-ish thing.

The important thing defstruct and defclass provide is the addition of a
class to the class lattice upon which method discrimination (and
subclass testing) can be done.  The issues of representaton and slot
access are mere details.

It is an interesting question whether, had generic functions and a
discriminable and extensible class lattice existed in Lisp 40+ years
ago, whether this would have been useful to the internal protocols of
Ma[xi,csy]ma because each subexpression could be minutely subclassed
about all it's internal propertes.  That question is arguably still
intellectually interesting, but alas any answer to that question is not
relevant to current work on Maxima.
&lt;/pre&gt;</description>
    <dc:creator>Steve Haflich</dc:creator>
    <dc:date>2012-05-18T00:39:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38258">
    <title>Re: fit nonlinear model to data - better way to code it?</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38258</link>
    <description>&lt;pre&gt;

I guess this actually works, but p is supposed to be a list of the
parameters and f(x) should be an expression containing the parameters:

f(x) := p1 + p2/(x-p3)

minpack(f(x)-y,[p1,p2,p3],guess);

Ray
_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Raymond Toy</dc:creator>
    <dc:date>2012-05-17T23:36:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38257">
    <title>Re: wxdraw2d</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38257</link>
    <description>&lt;pre&gt;Hi Mario and Andrej:

Thanks, I tried Andrej's solution and that worked and I want to try yours. 
Can you post the link to git?  I had it bookmarked, but I lost some of my 
bookmarks recently and I don't remember how to get to git.

Rich


-----Original Message----- 
From: Mario Rodriguez
Sent: Thursday, May 17, 2012 7:58 AM
To: Andrej Vodopivec
Cc: Maxima List
Subject: Re: [Maxima] wxdraw2d

El mié, 16-05-2012 a las 00:27 +0200, Mario Rodriguez escribió:



I've found a workaround for this problem, with some help from the
Gnuplot team.

Changes have been uploaded to the git repository one minute ago.

wxdraw?d should now work both in 4.6 and 4.4 versions.

(Sorry, Richard, for the delay)

--
Mario

_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima 

_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Richard Hennessy</dc:creator>
    <dc:date>2012-05-17T23:25:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38256">
    <title>Re: limit of erfc</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38256</link>
    <description>&lt;pre&gt;This topic has been addressed a few times.  One (probably incomplete) 
solution is to
represent inf  as  a rational number type,   (1/0),  und as (0/0)  minf 
as (-1 / 0)  and combine them
as appropriate.

((rat) 0 0)  multiplied by &amp;lt;anything&amp;gt;   is then   0*anything / 0   or 
und.   (that is,  ((rat) 0 0). )

oddly enough, a lot of the work is done by REMOVING code, namely no 
longer checking
for division by zero.

some additional code to display 0/0 as und etc.

I wrote a paper on this...

RJF

_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Richard Fateman</dc:creator>
    <dc:date>2012-05-17T21:20:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38255">
    <title>Re: limit of erfc</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38255</link>
    <description>&lt;pre&gt;

I had done some work on this long ago and I think Dieter has done some more
recent (better) work.  But, AFAIK, all attempts are incomplete.

Ray
_______________________________________________
Maxima mailing list
Maxima&amp;lt; at &amp;gt;math.utexas.edu
http://www.math.utexas.edu/mailman/listinfo/maxima
&lt;/pre&gt;</description>
    <dc:creator>Raymond Toy</dc:creator>
    <dc:date>2012-05-17T20:37:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38254">
    <title>Re: Complicated objects in Maxima</title>
    <link>http://permalink.gmane.org/gmane.comp.mathematics.maxima.general/38254</link>
    <description>&lt;pre&gt;defstruct stuff usually does not use lists, unless you specify that.  It 
uses some kind
of packed array-ish thing.
&lt;/pre&gt;</description>
    <dc:creator>Richard Fateman</dc:creator>
    <dc:date>2012-05-17T20:18:48</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.mathematics.maxima.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.mathematics.maxima.general</link>
  </textinput>
</rdf:RDF>

