<?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 Skew Symmetric Matrices in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Skew-Symmetric-Matrices/m-p/720432#M5415</link>
    <description>&lt;P&gt;Anyone who will inform me how to generate&amp;nbsp;&lt;SPAN&gt;Skew Symmetric Matrices in SAS/iml, please? Similarly a SAS/IML code to create a Full rank matrix, please? I thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Feb 2021 11:38:18 GMT</pubDate>
    <dc:creator>Abyt</dc:creator>
    <dc:date>2021-02-19T11:38:18Z</dc:date>
    <item>
      <title>Skew Symmetric Matrices</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Skew-Symmetric-Matrices/m-p/720432#M5415</link>
      <description>&lt;P&gt;Anyone who will inform me how to generate&amp;nbsp;&lt;SPAN&gt;Skew Symmetric Matrices in SAS/iml, please? Similarly a SAS/IML code to create a Full rank matrix, please? I thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 11:38:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Skew-Symmetric-Matrices/m-p/720432#M5415</guid>
      <dc:creator>Abyt</dc:creator>
      <dc:date>2021-02-19T11:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Skew Symmetric Matrices</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Skew-Symmetric-Matrices/m-p/720434#M5416</link>
      <description>&lt;P&gt;Although homework questions are welcome, when you ask for help you need to show what you've tried so far. Explain what you know and what you are confused about. Post some PROC IML code that indicates how you are attempting to solve the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a hint: A square matrix is skew-symmetric if A` = -A. Therefore you want to construct a matrix such that A[i,j] = -A[j,i] for all i,j.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 11:55:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Skew-Symmetric-Matrices/m-p/720434#M5416</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-02-19T11:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Skew Symmetric Matrices</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Skew-Symmetric-Matrices/m-p/720443#M5417</link>
      <description>&lt;P&gt;Just as Rick said, show what you have tried ,that is benefit to you and us .&lt;/P&gt;
&lt;P&gt;Check if&amp;nbsp; the following code is what you need .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
A=j(8,4);
call randseed(12345678);
call randgen(A,'normal');
cov=cov(A);
idx=loc(row(cov)&amp;lt;col(cov));
cov[idx]=-cov[idx];
skew_symmetric_matrix=cov;

matrix_rank=round(trace(ginv(skew_symmetric_matrix)*skew_symmetric_matrix));
print skew_symmetric_matrix ,matrix_rank;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Feb 2021 12:42:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Skew-Symmetric-Matrices/m-p/720443#M5417</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-02-19T12:42:14Z</dc:date>
    </item>
  </channel>
</rss>

