<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Lambart function in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288919#M2919</link>
    <description>Thank you very Rick. &lt;BR /&gt;&lt;BR /&gt;I use SAS for my random number generation. &lt;BR /&gt;&lt;BR /&gt;Actually, I am trying to convince some colleagues who is are fan of another software. We are developing a new density that has not been listed. I am recommending we use SAS.  They have been using Lambert function implemented in another software for genetation since the density is not supported by software. Since Lambert function is the method they have used for many years for generating data from unlisted, I want to demonstrate that it can be done in SAS. &lt;BR /&gt;&lt;BR /&gt;And show that the variate generatedd using Lambert function is no differrent that generated using inverse CDF solve using numerical methods.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;J</description>
    <pubDate>Tue, 02 Aug 2016 13:00:15 GMT</pubDate>
    <dc:creator>SWEETSAS</dc:creator>
    <dc:date>2016-08-02T13:00:15Z</dc:date>
    <item>
      <title>Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288736#M2915</link>
      <description>&lt;P&gt;Hello all:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does anyone know whether any SAS procedure has Lambart function?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2016 22:06:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288736#M2915</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2016-08-01T22:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288885#M2916</link>
      <description>&lt;P&gt;I assume you mean the real-valued Lambert W function? No, I don't think that is built into Base SAS or SAS/IML.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;To understand your needs better, could you share&lt;/P&gt;
&lt;P&gt;1) how you hope to use the Lambert W function? What application do you have in mind?&lt;/P&gt;
&lt;P&gt;2) The Lambert W function isn't actually a function. It has two branches. Do you need both branches?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Although the function isn't built in, you can implement it to arbitrary precision by using the fact that the function is the inverse of f(w)=w*exp(w). &amp;nbsp;It is easy to evaluate f. &amp;nbsp;For example, the following statements plot the upper branch of the Lambert W function:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;&lt;BR /&gt;w = do(-1, 2, 0.1);
x = w#exp(w);
title "Lambert's W Function";
call series(x, w) grid={x y};   /* inverse of w*exp(w) */
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Since the function is monotonic on each branch, you can use&amp;nbsp;root-finding to evaluate the inverse.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 10:07:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288885#M2916</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-02T10:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288896#M2917</link>
      <description>&lt;P&gt;Thanks Rick.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes. I want to it use for generating random variates from a new function with a specified parameter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am generating data from a function that I created,&lt;/P&gt;
&lt;P&gt;E.g: f(x)=theta*exp(-theta*x). I want to generate random variable from f(x). When theta is given say 0.1.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I like to specifically use Lambert function for the generation&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 10:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288896#M2917</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2016-08-02T10:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288905#M2918</link>
      <description>&lt;P&gt;OK, so let's talk about generating random variates.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The density function f(x) = theta*exp(-theta*x)&lt;/P&gt;
&lt;P&gt;is an exponential distribution with "rate parameter" theta.&lt;/P&gt;
&lt;P&gt;An alternate parameterization is exp(-x/sigma) / sigma, where sigma=1/theta is called the shape parameter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/imlug/68150/HTML/default/viewer.htm#imlug_langref_sect339.htm" target="_self"&gt;The RANDGEN function in SAS/IML&lt;/A&gt; supports random generation from the exponential distribution, although it uses the shape parameter. &amp;nbsp;Consequently, here is how you can generate 500 random variates from the exponential distribution with rate parameter 0.1 in SAS/IML:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
call randseed(12345);  /* set random number seed */
x = j(500, 1);         /* allocate a vector to hold results */
theta = 0.1;           /* rate parameter */
call randgen(x, "Exponential", 1/theta); /* shape parameter */

call histogram(x) rebin={2.5 5}; /* visualize the random sample */
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Aug 2016 12:03:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288905#M2918</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-02T12:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288919#M2919</link>
      <description>Thank you very Rick. &lt;BR /&gt;&lt;BR /&gt;I use SAS for my random number generation. &lt;BR /&gt;&lt;BR /&gt;Actually, I am trying to convince some colleagues who is are fan of another software. We are developing a new density that has not been listed. I am recommending we use SAS.  They have been using Lambert function implemented in another software for genetation since the density is not supported by software. Since Lambert function is the method they have used for many years for generating data from unlisted, I want to demonstrate that it can be done in SAS. &lt;BR /&gt;&lt;BR /&gt;And show that the variate generatedd using Lambert function is no differrent that generated using inverse CDF solve using numerical methods.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;J</description>
      <pubDate>Tue, 02 Aug 2016 13:00:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288919#M2919</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2016-08-02T13:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288924#M2920</link>
      <description>&lt;P&gt;Sounds great.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;I have written about &lt;A href="http://blogs.sas.com/content/iml/2013/07/22/the-inverse-cdf-method.html" target="_self"&gt;how to use the inverse CDF method to generate random variates.&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;You can &lt;A href="http://blogs.sas.com/content/iml/2014/02/05/find-the-root-of-a-function.html" target="_self"&gt;use the FROOT function in SAS/IML to&amp;nbsp;numerically solve inverse problems.&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Chapter 7 of&amp;nbsp;&lt;EM&gt;&lt;A href="http://support.sas.com/publishing/authors/wicklin.html" target="_self"&gt;Simulating Data with SAS&lt;/A&gt;&lt;/EM&gt; contains other advanced methods for simulating data from univariate distributions. Including root-finding as part of the invrse CDF method.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If you write out the PDF or CDF that&amp;nbsp;you want, I might be able to suggest some&amp;nbsp;efficient computational techniques.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:16:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/288924#M2920</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-02T13:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289691#M2921</link>
      <description>&lt;P&gt;Here are the CDF and the Qauntile function expressed in terms of Lambert function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The goal is to generate the random variables t using1) &amp;nbsp;inverse CDF and 2) Lambert function method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Distribution function:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;alphat=(alpha*t/(1+alpha));&lt;/P&gt;
&lt;P&gt;expalpha=exp(-alpha*t);&lt;/P&gt;
&lt;P&gt;F(t|alpha)=1-(1+alphat)*expalpha;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Quantile function (Q):&lt;/P&gt;
&lt;P&gt;Q(P|alpha)=-1-(1/alpha)-(1/alpha)W(-(1+alpha)*(1-p)*exp(-(1+alpha));&lt;/P&gt;
&lt;P&gt;0&amp;lt;p&amp;lt;1; Where W is the Lambert function. P is essentially a unif(0,1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will also like to track the computer time using both method. I want SAS to win&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2016 01:10:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289691#M2921</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2016-08-05T01:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289857#M2924</link>
      <description>&lt;P&gt;If your goal is to generate random variates for this distribution, I don't think you need to implement&amp;nbsp;the inverse CDF method or use the Lambert W&amp;nbsp;function. My calculations indicate that your&amp;nbsp;density is a mixture distribution of two well-known densities: an exponential distribution and a gamma distribution. (Actually Erlang, which is a gamma distribution with an integer shape parameter.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are my calculations: Instead of the CDF, look at the PDF. Then the density function is&lt;/P&gt;
&lt;P&gt;f(t) = alpha^2 / (1+alpha) exp(-alpha*t)(1+t)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;= alpha/(1+alpha) [ alpha*exp(-alpha*t) ] + &amp;nbsp;1/(1+alpha) [ alpha^2 *t*exp(-alpha*t) ]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;= alpha/(1+alpha) [ g(t) ] + &amp;nbsp;1/(1+alpha) [ h(t)&amp;nbsp;]&lt;/P&gt;
&lt;P&gt;where g(t) is the density of the exponential distribution with shape&amp;nbsp;parameter sigma=1/alpha, and&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where h(t) is the density of the gamma&amp;nbsp;distribution with integer shape parameter a=2 and second shape parameter sigma=1/alpha&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following SAS/IML program compares your density to the mixture density:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
alpha = 1.5;
t = do(0, 7, 0.1);
f = alpha##2 /(1+alpha) # (1+t) # exp(-alpha#t); /* mystery distrib */

shape = 1/alpha;
g = pdf("Expon", t, shape);    /* exponential distrib */
h = pdf("Gamma", t, 2, shape); /* gamma distrib (actually Erlang with a=2 */
p = alpha / (1+alpha);         /* mixing probability */
mixDist = p*g + (1-p)*h;

/* show that mixDist = mystery distrib */
maxDiff = max(abs(f - mixDist));
print maxDiff;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The densities are identical to machine precision.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By linearity, the PDF and CDF for your distribution is just a linear combination of the PDF/CDF for the exponential and gamma distributions. This blog post shows &lt;A href="http://blogs.sas.com/content/iml/2011/09/21/generate-a-random-sample-from-a-mixture-distribution.html" target="_self"&gt;how to generate a random sample from a mixture distribution:&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* random sample from mixture distribution */
/* See http://blogs.sas.com/content/iml/2011/09/21/generate-a-random-sample-from-a-mixture-distribution.html */
N = 1000;
call randseed(12345);
Type = 1 + randfun(N, "Bernoulli", p); /* fill with 1s and 2s */

x = j(N,1); /* allocate vector */
/* Exponential draw */
idx = loc(Type=1);
y = j(ncol(idx),1);
call randgen(y, "Expo", shape);
x[idx] = y; 
/* Erlang (gamma) draw */
idx = loc(Type=2);
y = j(ncol(idx),1);
call randgen(y, "Erlang", 2, shape);
x[idx] = y; 

call series(t, mixDist); /* plot pdf */
call histogram(x) rebin={0.1, 0.2};&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you need to create many random samples, you can be even more efficient because&amp;nbsp;the&amp;nbsp;number of elements for&amp;nbsp;each&amp;nbsp;the exponential draw is Q = Binomial(N,p) and the number for the Erlang draw is N - Q. So no need to use the LOC function. &amp;nbsp;I just did it so that the code above is closer to the code on the blog post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2016 17:56:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289857#M2924</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-05T17:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289980#M2925</link>
      <description>&lt;P&gt;Thank you very much, Rick!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I must say that you are not from this earth! You are a genius to have figured that the distribution is a mixture by merely looking at the information I provided. It is indeed a mixture of exponential an gamma(2). In fact, you got the missing probability exactly right. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But this is simplest form of the distribution that we work with. It is the flexibility of this distribution that makes it appealing. We work with several generalization of this distribution. The generalization allows for flexibility in modeling; the generalizations cannot easily be expressed &amp;nbsp;as a mixture. For instance, there is a generalization in which the CDF is raised to a power, so that when the power=1 then we have the parent distribution. In such cases, one has to result to CDF or Lambert function. &amp;nbsp;That is the reason we want a SAS program that implements Lambert function and CDF that we can easily modify when we develop generalizations of this distribution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Again, you are great thinker. And thanks for sharing your knowledge.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2016 17:11:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289980#M2925</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2016-08-06T17:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289993#M2926</link>
      <description>&lt;P&gt;You still haven't said which branch of the function you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a lot of information in the literature about how to efficiently compute the Lambert W function. The paper by&lt;A href="https://pdfs.semanticscholar.org/7a5a/76a9369586dd0dd34dda156d8f2779d1fd59.pdf" target="_self"&gt;Chapeau-Blondeau and Monir (2002)&lt;/A&gt; seems to have a nice fast direct method for the lower branch, which has applications to generating data from the long-tailed generalized Gaussian distribution. &amp;nbsp;For the principal branch, an initial guess as described in &lt;A href="http://www.sciencedirect.com/science/article/pii/S0893965998000974" target="_self"&gt;Boyd (1998)&lt;/A&gt;&amp;nbsp;looks promising,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;followed by one or two iterations of Halley's method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck to you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2016 21:23:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289993#M2926</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-06T21:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289997#M2927</link>
      <description>&lt;P&gt;Thanks very much much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need the negative branch of Lambert function. Here is quantile function expressed in terms of the negative branch of the Lambert function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Quantile function (Q):&lt;/P&gt;
&lt;P&gt;Q(p|alpha)=-1-(1/alpha)-(1/alpha)W_&lt;SUB&gt;1&lt;/SUB&gt;[(1+alpha)*(p-1)*exp(-(1+alpha))];&lt;/P&gt;
&lt;P&gt;0&amp;lt;p&amp;lt;1; Where W_&lt;SUB&gt;1&lt;/SUB&gt; where denotes the negative branch of the Lambert W function&lt;/P&gt;
&lt;P&gt;P is essentially a unif(0,1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2016 21:46:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/289997#M2927</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2016-08-06T21:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/292786#M2952</link>
      <description>&lt;P&gt;Using your current software, how long does does it&amp;nbsp;take to compute 1E7 random variates by calling the quantile function (which calls the Lambert functioN) with alpha=1?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/292786#M2952</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-19T17:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/292867#M2953</link>
      <description>&lt;P&gt;execution time is 3.65 seconds; CPU time is 0.15 seconds&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 23:01:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/292867#M2953</guid>
      <dc:creator>SWEETSAS</dc:creator>
      <dc:date>2016-08-19T23:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Lambart function</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/429945#M3980</link>
      <description>&lt;P&gt;&lt;SPAN&gt;SAS/IML 14.3 (released with SAS 9.4M5) contains a built-in&lt;/SPAN&gt;&lt;A href="http://bit.ly/2hmdCVu" target="_self" rel="nofollow noopener noreferrer"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;implementation of the Lambert W function.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 11:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Lambart-function/m-p/429945#M3980</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-01-23T11:13:34Z</dc:date>
    </item>
  </channel>
</rss>

