<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to API matrix</title><link>https://sourceforge.net/p/mathlabtool/wiki/API%2520matrix/</link><description>Recent changes to API matrix</description><atom:link href="https://sourceforge.net/p/mathlabtool/wiki/API%20matrix/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 14 Dec 2023 17:28:20 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/mathlabtool/wiki/API%20matrix/feed" rel="self" type="application/rss+xml"/><item><title>API matrix modified by tanzheng</title><link>https://sourceforge.net/p/mathlabtool/wiki/API%2520matrix/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,3 +1,4 @@
+[Contents](https://github.com/xxyjskx1987/MathLabTool/wiki/API-Reference)
 * **mlt_m_set_zero:** Matrix clearing.  
 ***param:***  
 ****matrix:**** Matrix, array type to be zeroed out.  
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">tanzheng</dc:creator><pubDate>Thu, 14 Dec 2023 17:28:20 -0000</pubDate><guid>https://sourceforge.net6d862ee5c42fc2a20beb0575cf840433e2d8009e</guid></item><item><title>API matrix modified by tanzheng</title><link>https://sourceforge.net/p/mathlabtool/wiki/API%2520matrix/</link><description>&lt;div class="markdown_content"&gt;&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;mlt_m_set_zero:&lt;/strong&gt; Matrix clearing.&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;param:&lt;/em&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;*matrix:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; Matrix, array type to be zeroed out.&lt;br/&gt;
&lt;/em&gt;&lt;strong&gt;ex:&lt;/strong&gt;*&lt;/p&gt;
&lt;p&gt;var m = mlt_m_set_zero(&lt;span&gt;[[1, 2]&lt;/span&gt;, &lt;span&gt;[5, 12]&lt;/span&gt;]);&lt;br/&gt;
mlt_page_console_log(m, '\n');&lt;br/&gt;
* &lt;strong&gt;mlt_m_trans:&lt;/strong&gt; The matrix transpose.&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;param:&lt;/em&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;*matrix:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; Matrices that need to be transposed, array types.&lt;br/&gt;
&lt;/em&gt;&lt;strong&gt;ex:&lt;/strong&gt;*&lt;/p&gt;
&lt;p&gt;var m = mlt_m_trans(&lt;span&gt;[[1, 2, 3]&lt;/span&gt;, &lt;span&gt;[5, 12, 10]&lt;/span&gt;]);&lt;br/&gt;
mlt_page_console_log(m, '\n');&lt;br/&gt;
* &lt;strong&gt;mlt_m_dot:&lt;/strong&gt; Matrix multiplication.&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;param:&lt;/em&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;*matrix1:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; Matrix multiplier, array type.&lt;br/&gt;
&lt;/em&gt;&lt;strong&gt;&lt;em&gt;matrix2:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; Matrix multiplier, array type.&lt;br/&gt;
&lt;/em&gt;&lt;strong&gt;ex:&lt;/strong&gt;*&lt;/p&gt;
&lt;p&gt;var m = mlt_m_dot(&lt;span&gt;[[1, 2, 3]&lt;/span&gt;, &lt;span&gt;[5, 12, 10]&lt;/span&gt;], &lt;span&gt;[[1, 5]&lt;/span&gt;, &lt;span&gt;[2, 12]&lt;/span&gt;, &lt;span&gt;[3, 10]&lt;/span&gt;]);&lt;br/&gt;
mlt_page_console_log(m, '\n');&lt;br/&gt;
* &lt;strong&gt;mlt_m_inv_gauss:&lt;/strong&gt; The inverse matrix.&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;param:&lt;/em&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;*matrix:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; Matrix, array type that needs to be inverted.&lt;br/&gt;
&lt;/em&gt;&lt;strong&gt;ex:&lt;/strong&gt;*&lt;/p&gt;
&lt;p&gt;var m = mlt_m_inv_gauss(&lt;span&gt;[[1, 3]&lt;/span&gt;, &lt;span&gt;[2, 7]&lt;/span&gt;]);&lt;br/&gt;
mlt_page_console_log(m, '\n');&lt;br/&gt;
* &lt;strong&gt;mlt_m_set_one:&lt;/strong&gt; The identity matrix.&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;param:&lt;/em&gt;&lt;/strong&gt;&lt;br/&gt;
&lt;strong&gt;&lt;em&gt;*matrix:&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; It needs to be set to the identity matrix, array type.&lt;br/&gt;
&lt;/em&gt;&lt;strong&gt;ex:&lt;/strong&gt;*&lt;/p&gt;
&lt;p&gt;var m = mlt_m_set_one(&lt;span&gt;[[1, 2]&lt;/span&gt;, &lt;span&gt;[5, 12]&lt;/span&gt;]);&lt;br/&gt;
mlt_page_console_log(m, '\n');&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">tanzheng</dc:creator><pubDate>Thu, 14 Dec 2023 17:28:19 -0000</pubDate><guid>https://sourceforge.net25df6f5b67dba55e589c25948bd52da51369cf7a</guid></item></channel></rss>