<?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: Need to combine matrix &amp; 'For' loop ..... in Mathcad</title>
    <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311058#M121395</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="102143" alt="AIM.jpg" class="jive-image image-2" src="https://community.ptc.com/legacyfs/online/102143_AIM.jpg" style="width: 620px; height: 460px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="102145" alt="AIM1.jpg" class="image-4 jive-image" src="https://community.ptc.com/legacyfs/online/102145_AIM1.jpg" style="width: 620px; height: 267px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="102144" alt="AIM1.jpg" class="jive-image image-3" src="https://community.ptc.com/legacyfs/online/102144_AIM1.jpg" style="width: 620px; height: 268px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="102146" alt="AIM2.jpg" class="image-5 jive-image" src="https://community.ptc.com/legacyfs/online/102146_AIM2.jpg" style="width: 620px; height: 329px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 May 2016 07:22:13 GMT</pubDate>
    <dc:creator>-MFra-</dc:creator>
    <dc:date>2016-05-27T07:22:13Z</dc:date>
    <item>
      <title>Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311051#M121388</link>
      <description>I'm facing a problem related to matrix element used in a program . I'm attaching a math Cad prime 3.1 file .</description>
      <pubDate>Thu, 03 May 2018 14:26:39 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311051#M121388</guid>
      <dc:creator>aimtiaz</dc:creator>
      <dc:date>2018-05-03T14:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311052#M121389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are using 'x' to index into the column of your matrix 'N.B'. column indezes can only be integer values. You step x from 0.5 to 1 in steps of 0.001. That is not going to work...&lt;/P&gt;&lt;P&gt;Use different variables for the stepping value, and the index of the matrix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 17:18:20 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311052#M121389</guid>
      <dc:creator>LucMeekes</dc:creator>
      <dc:date>2016-05-25T17:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311053#M121390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just want to store data in a matrix used in a for loop .............. how can i do that???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 17:28:08 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311053#M121390</guid>
      <dc:creator>aimtiaz</dc:creator>
      <dc:date>2016-05-25T17:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311054#M121391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking once more at your program i doubt if it works at all: I don't know if the assignment to f(x) works in a program...&lt;/P&gt;&lt;P&gt;But first try to separate the index 'x' from the stepping 'x'. To do that, change the first assignment to x into:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.ptc.com/legacyfs/online/102074_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;so use a capital X instead of the lower case.&lt;/P&gt;&lt;P&gt;Also change the column indexes to N.B that use the lowercase 'x', to use the uppercase 'X' instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you shouldn't get the red to the index 'x' of N.B&amp;nbsp; anymore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Success!&lt;/P&gt;&lt;P&gt;Luc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 19:04:04 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311054#M121391</guid>
      <dc:creator>LucMeekes</dc:creator>
      <dc:date>2016-05-25T19:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311055#M121392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the data provided and your program, &lt;SPAN&gt;you&lt;/SPAN&gt; can only do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="fig3.jpg" class="jive-image image-1" height="395" src="https://community.ptc.com/legacyfs/online/102078_fig3.jpg" style="width: 621px; height: 394.63px;" width="621" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2016 20:06:35 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311055#M121392</guid>
      <dc:creator>-MFra-</dc:creator>
      <dc:date>2016-05-25T20:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311056#M121393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I am attaching another file ............. please solve the problem once more for my better understanding .&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2016 17:42:37 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311056#M121393</guid>
      <dc:creator>aimtiaz</dc:creator>
      <dc:date>2016-05-26T17:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311057#M121394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your program does not make sense at all, and it confuses me when I'm trying to understand what kind of result you want.&lt;/P&gt;&lt;P&gt;Does this come any near?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.ptc.com/legacyfs/online/102120_pastedImage_3.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;Luc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2016 20:33:54 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311057#M121394</guid>
      <dc:creator>LucMeekes</dc:creator>
      <dc:date>2016-05-26T20:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311058#M121395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="102143" alt="AIM.jpg" class="jive-image image-2" src="https://community.ptc.com/legacyfs/online/102143_AIM.jpg" style="width: 620px; height: 460px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="102145" alt="AIM1.jpg" class="image-4 jive-image" src="https://community.ptc.com/legacyfs/online/102145_AIM1.jpg" style="width: 620px; height: 267px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="102144" alt="AIM1.jpg" class="jive-image image-3" src="https://community.ptc.com/legacyfs/online/102144_AIM1.jpg" style="width: 620px; height: 268px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="102146" alt="AIM2.jpg" class="image-5 jive-image" src="https://community.ptc.com/legacyfs/online/102146_AIM2.jpg" style="width: 620px; height: 329px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 May 2016 07:22:13 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311058#M121395</guid>
      <dc:creator>-MFra-</dc:creator>
      <dc:date>2016-05-27T07:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311059#M121396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much ( in delay .) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jun 2016 19:06:14 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311059#M121396</guid>
      <dc:creator>aimtiaz</dc:creator>
      <dc:date>2016-06-12T19:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine matrix &amp; 'For' loop .....</title>
      <link>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311060#M121397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much . Now I can understand it clearly .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jun 2016 19:10:43 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mathcad/Need-to-combine-matrix-For-loop/m-p/311060#M121397</guid>
      <dc:creator>aimtiaz</dc:creator>
      <dc:date>2016-06-12T19:10:43Z</dc:date>
    </item>
  </channel>
</rss>

