<?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 Finding Indices Greater Than a Specified Value in a List in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Finding-Indices-Greater-Than-a-Specified-Value-in-a-List/m-p/882591#M104660</link>
    <description>&lt;P&gt;&lt;SPAN&gt;As shown in the JSL below, in the case of a Matrix, 'loc' can be used to display indices greater than 5, but it cannot be applied to a List. How should I find the indices greater than a certain value in the case of a List?&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;show(Loc( [5, 7, 3, ., 5] &amp;gt;= 5 ));
show(Loc( {5, 7, 3, ., 5} &amp;gt;= 5 )); //Error&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 01 Jul 2025 10:14:36 GMT</pubDate>
    <dc:creator>BabyDoragon</dc:creator>
    <dc:date>2025-07-01T10:14:36Z</dc:date>
    <item>
      <title>Finding Indices Greater Than a Specified Value in a List</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-Indices-Greater-Than-a-Specified-Value-in-a-List/m-p/882591#M104660</link>
      <description>&lt;P&gt;&lt;SPAN&gt;As shown in the JSL below, in the case of a Matrix, 'loc' can be used to display indices greater than 5, but it cannot be applied to a List. How should I find the indices greater than a certain value in the case of a List?&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;show(Loc( [5, 7, 3, ., 5] &amp;gt;= 5 ));
show(Loc( {5, 7, 3, ., 5} &amp;gt;= 5 )); //Error&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Jul 2025 10:14:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-Indices-Greater-Than-a-Specified-Value-in-a-List/m-p/882591#M104660</guid>
      <dc:creator>BabyDoragon</dc:creator>
      <dc:date>2025-07-01T10:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Indices Greater Than a Specified Value in a List</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-Indices-Greater-Than-a-Specified-Value-in-a-List/m-p/882603#M104661</link>
      <description>&lt;P&gt;Convert the list into a matrix&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Show(Loc(Matrix({5, 7, 3, ., 5} &amp;gt;= 5)));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you can use Where&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Where({5, 7, 3, ., 5} &amp;gt;= 5)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Jul 2025 11:00:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-Indices-Greater-Than-a-Specified-Value-in-a-List/m-p/882603#M104661</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-01T11:00:44Z</dc:date>
    </item>
  </channel>
</rss>

