/usr/share/extrema/Help/BasicTasks/BasicTasksS09.htm is in extrema 4.4.5.dfsg-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <HTML>
<HEAD>
<TITLE>Solve a matrix equation</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<p>
Solve <code>Ax=b</code> (and check the solution) given that</P>
<P>
<pre>
1 2 0 7
A = 2 5 -1 b = 8
4 10 -1 9
</pre></P>
<P>
<font color="blue"><pre>
A=[[1;2;4];[2;5;10];[0;-1;-1]]
b=[7;8;9]
soln = gaussj(A,b)
check = b-A<>soln</pre></font></P>
<P>
The <code>check</code> vector should be all zero if the solution is correct.</P>
<P>
<a href="BasicTasksS08.htm"><img src="../shadow_left.gif">
<font size="+1" color="olive">Integrate a function</font></a><br />
<a href="BasicTasksS10.htm"><img src="../shadow_right.gif">
<font size="+1" color="olive">Read data from files</font></a>
</P>
</BODY>
</HTML>
|