<?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: Efficient Cumulative Sum over Cumulative Product in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531172#M4539</link>
    <description>&lt;P&gt;Implementing your base formula is trivial in a data step. Can you show what you expect as the final, final output, assuming this is the input? I want to ensure there's nothing I'm missing before taking a further look or providing any code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/194934"&gt;@thepushkarsingh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Suppose a person can belong to any of the RACEs with the probability of PROB_RACE. And marginal probability of dying in years 1 to 3 is given(marginal survival will be 1-PROB_DYING):&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;RACE&lt;/TD&gt;
&lt;TD&gt;PROB_RACE&lt;/TD&gt;
&lt;TD&gt;PROB_DYING_YR1&lt;/TD&gt;
&lt;TD&gt;PROB_DYING_YR2&lt;/TD&gt;
&lt;TD&gt;PROB_DYING_YR3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;0.26&lt;/TD&gt;
&lt;TD&gt;0.1&lt;/TD&gt;
&lt;TD&gt;0.2&lt;/TD&gt;
&lt;TD&gt;0.3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;0.35&lt;/TD&gt;
&lt;TD&gt;0.16&lt;/TD&gt;
&lt;TD&gt;0.25&lt;/TD&gt;
&lt;TD&gt;0.45&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;TD&gt;0.23&lt;/TD&gt;
&lt;TD&gt;0.23&lt;/TD&gt;
&lt;TD&gt;0.34&lt;/TD&gt;
&lt;TD&gt;0.17&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;TD&gt;0.16&lt;/TD&gt;
&lt;TD&gt;0.18&lt;/TD&gt;
&lt;TD&gt;0.17&lt;/TD&gt;
&lt;TD&gt;0.14&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the person belonging to RACE A will have a probability of survival after 3 years, call it SURV3_A = (1-0.1)*(1-0.2)*(1-0.3).&lt;/P&gt;
&lt;P&gt;Similarly, SURV3_B=(1-0.16)*(1-0.25)*(1-0.45) and so on...&lt;/P&gt;
&lt;P&gt;And a random person will have a probability of survival after 3 years as : PROB_A*SURV3_A+PROB_B*SURV3_B+PROB_C*SURV3_C+PROB_D*SURV3_D.&lt;/P&gt;
&lt;P&gt;I was thinking of a generalization to calculate probability of survival of any random person after 'T' years when there can be 'N' possible RACEs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can think of taking one row at a time,using CUPROD, then summing across columns which seem inefficient, so wondering if any easy way?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Jan 2019 20:54:09 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-01-29T20:54:09Z</dc:date>
    <item>
      <title>Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531148#M4536</link>
      <description>&lt;P&gt;Suppose a person can belong to any of the RACEs with the probability of PROB_RACE. And marginal probability of dying in years 1 to 3 is given(marginal survival will be 1-PROB_DYING):&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;RACE&lt;/TD&gt;&lt;TD&gt;PROB_RACE&lt;/TD&gt;&lt;TD&gt;PROB_DYING_YR1&lt;/TD&gt;&lt;TD&gt;PROB_DYING_YR2&lt;/TD&gt;&lt;TD&gt;PROB_DYING_YR3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0.26&lt;/TD&gt;&lt;TD&gt;0.1&lt;/TD&gt;&lt;TD&gt;0.2&lt;/TD&gt;&lt;TD&gt;0.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;0.35&lt;/TD&gt;&lt;TD&gt;0.16&lt;/TD&gt;&lt;TD&gt;0.25&lt;/TD&gt;&lt;TD&gt;0.45&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;0.23&lt;/TD&gt;&lt;TD&gt;0.23&lt;/TD&gt;&lt;TD&gt;0.34&lt;/TD&gt;&lt;TD&gt;0.17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;0.16&lt;/TD&gt;&lt;TD&gt;0.18&lt;/TD&gt;&lt;TD&gt;0.17&lt;/TD&gt;&lt;TD&gt;0.14&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the person belonging to RACE A will have a probability of survival after 3 years, call it SURV3_A = (1-0.1)*(1-0.2)*(1-0.3).&lt;/P&gt;&lt;P&gt;Similarly, SURV3_B=(1-0.16)*(1-0.25)*(1-0.45) and so on...&lt;/P&gt;&lt;P&gt;And a random person will have a probability of survival after 3 years as : PROB_A*SURV3_A+PROB_B*SURV3_B+PROB_C*SURV3_C+PROB_D*SURV3_D.&lt;/P&gt;&lt;P&gt;I was thinking of a generalization to calculate probability of survival of any random person after 'T' years when there can be 'N' possible RACEs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can think of taking one row at a time,using CUPROD, then summing across columns which seem inefficient, so wondering if any easy way?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 19:51:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531148#M4536</guid>
      <dc:creator>thepushkarsingh</dc:creator>
      <dc:date>2019-01-29T19:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531172#M4539</link>
      <description>&lt;P&gt;Implementing your base formula is trivial in a data step. Can you show what you expect as the final, final output, assuming this is the input? I want to ensure there's nothing I'm missing before taking a further look or providing any code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/194934"&gt;@thepushkarsingh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Suppose a person can belong to any of the RACEs with the probability of PROB_RACE. And marginal probability of dying in years 1 to 3 is given(marginal survival will be 1-PROB_DYING):&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;RACE&lt;/TD&gt;
&lt;TD&gt;PROB_RACE&lt;/TD&gt;
&lt;TD&gt;PROB_DYING_YR1&lt;/TD&gt;
&lt;TD&gt;PROB_DYING_YR2&lt;/TD&gt;
&lt;TD&gt;PROB_DYING_YR3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;0.26&lt;/TD&gt;
&lt;TD&gt;0.1&lt;/TD&gt;
&lt;TD&gt;0.2&lt;/TD&gt;
&lt;TD&gt;0.3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;0.35&lt;/TD&gt;
&lt;TD&gt;0.16&lt;/TD&gt;
&lt;TD&gt;0.25&lt;/TD&gt;
&lt;TD&gt;0.45&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;TD&gt;0.23&lt;/TD&gt;
&lt;TD&gt;0.23&lt;/TD&gt;
&lt;TD&gt;0.34&lt;/TD&gt;
&lt;TD&gt;0.17&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;TD&gt;0.16&lt;/TD&gt;
&lt;TD&gt;0.18&lt;/TD&gt;
&lt;TD&gt;0.17&lt;/TD&gt;
&lt;TD&gt;0.14&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the person belonging to RACE A will have a probability of survival after 3 years, call it SURV3_A = (1-0.1)*(1-0.2)*(1-0.3).&lt;/P&gt;
&lt;P&gt;Similarly, SURV3_B=(1-0.16)*(1-0.25)*(1-0.45) and so on...&lt;/P&gt;
&lt;P&gt;And a random person will have a probability of survival after 3 years as : PROB_A*SURV3_A+PROB_B*SURV3_B+PROB_C*SURV3_C+PROB_D*SURV3_D.&lt;/P&gt;
&lt;P&gt;I was thinking of a generalization to calculate probability of survival of any random person after 'T' years when there can be 'N' possible RACEs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can think of taking one row at a time,using CUPROD, then summing across columns which seem inefficient, so wondering if any easy way?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 20:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531172#M4539</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-29T20:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531177#M4540</link>
      <description>I understand creating 3 more variables(cumulative product, so the 1st column will remain same, 2nd will be product till 2 years, 3rd will be for 3 years) will not be an issue and with another proc sql or retain statement sum of column and final sum will also be easy. But it'll take a lot of text and more than one data/proc steps(for me). For significantly large number of years, I was thinking of any more efficient way.</description>
      <pubDate>Tue, 29 Jan 2019 21:10:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531177#M4540</guid>
      <dc:creator>thepushkarsingh</dc:creator>
      <dc:date>2019-01-29T21:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531179#M4541</link>
      <description>Still need the expected output to help you here. Or if you already have a solution and need it more efficient, perhaps post the code you have already.</description>
      <pubDate>Tue, 29 Jan 2019 21:12:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531179#M4541</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-29T21:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531301#M4544</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;, apologies for earlier responses. I have following matrix, X:&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;0.1&lt;/TD&gt;&lt;TD&gt;0.2&lt;/TD&gt;&lt;TD&gt;0.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.16&lt;/TD&gt;&lt;TD&gt;0.25&lt;/TD&gt;&lt;TD&gt;0.45&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.23&lt;/TD&gt;&lt;TD&gt;0.34&lt;/TD&gt;&lt;TD&gt;0.17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.18&lt;/TD&gt;&lt;TD&gt;0.17&lt;/TD&gt;&lt;TD&gt;0.14&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(1-X) will be:&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;0.9&lt;/TD&gt;&lt;TD&gt;0.8&lt;/TD&gt;&lt;TD&gt;0.7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.84&lt;/TD&gt;&lt;TD&gt;0.75&lt;/TD&gt;&lt;TD&gt;0.55&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.77&lt;/TD&gt;&lt;TD&gt;0.66&lt;/TD&gt;&lt;TD&gt;0.83&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.82&lt;/TD&gt;&lt;TD&gt;0.83&lt;/TD&gt;&lt;TD&gt;0.86&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I need cumulative product at each row like:&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;0.9&lt;/TD&gt;&lt;TD&gt;0.72&lt;/TD&gt;&lt;TD&gt;0.504&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.84&lt;/TD&gt;&lt;TD&gt;0.63&lt;/TD&gt;&lt;TD&gt;0.3465&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.77&lt;/TD&gt;&lt;TD&gt;0.5082&lt;/TD&gt;&lt;TD&gt;0.421806&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0.82&lt;/TD&gt;&lt;TD&gt;0.6806&lt;/TD&gt;&lt;TD&gt;0.585316&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I need column wise sum like:&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;3.33&lt;/TD&gt;&lt;TD&gt;2.5388&lt;/TD&gt;&lt;TD&gt;1.857622&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And in the end, a row sum :&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;7.726422&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was superexcited with&amp;nbsp;@Rick_SAS's solution which suggested use of (1-X)[,#], but it only gives me final column. Any suggestion?&lt;/P&gt;&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 09:45:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531301#M4544</guid>
      <dc:creator>thepushkarsingh</dc:creator>
      <dc:date>2019-01-30T09:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531316#M4547</link>
      <description>&lt;P&gt;Just want to add that it is considered bad&amp;nbsp;etiquette to post the same question twice and solicit advice in two separate threads.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I answered&amp;nbsp;in the other thread. Good luck with your problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 10:33:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531316#M4547</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-01-30T10:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531322#M4550</link>
      <description>&lt;P&gt;I am very sorry, while I was posting further information in your solution, I saw the section where it said 'If you need further help post a new question', so I marked the original post as solved and posted it again separately. I thought it would be disrespectful if I don't tell you about my inquiries, so I posted there too. I didn't mean to disrespect, which seemingly I did eventually.&lt;/P&gt;&lt;P&gt;Apologies to both&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 10:43:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531322#M4550</guid>
      <dc:creator>thepushkarsingh</dc:creator>
      <dc:date>2019-01-30T10:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531323#M4551</link>
      <description>&lt;P&gt;I accept your apology, but let me clarify that the issue isn't that cross-posting is disrespectful. When there are two threads, it is hard for experts to work from the same information and to build a program that solves your problem. It will also be difficult for someone who has a similar question in the future to solve their problem by consulting these pages. There are ways to merge the two threads into one, but they have diverged so much that I'm not sure it would be helpful.&amp;nbsp; I have a hard time understanding these threads even though I was involved in writing one of them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to encourage you to revisit the "accepted solution" that you marked in the other thread. After you marked my initial response as correct, you provided extra information and I&amp;nbsp;posted additional programs. I don't know whether the later solutions are better, but please mark the answer that best resolves your problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 10:54:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531323#M4551</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-01-30T10:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Efficient Cumulative Sum over Cumulative Product</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531324#M4552</link>
      <description>&lt;P&gt;Thanks for understanding. I'll not repeat same mistake.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 10:57:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Efficient-Cumulative-Sum-over-Cumulative-Product/m-p/531324#M4552</guid>
      <dc:creator>thepushkarsingh</dc:creator>
      <dc:date>2019-01-30T10:57:03Z</dc:date>
    </item>
  </channel>
</rss>

