133 lines
2.6 KiB
HTML
133 lines
2.6 KiB
HTML
<!-- saved from url=(0014)about:internet -->
|
|
<html>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=9" />
|
|
<head>
|
|
<title>Matrix Calculator: Buttons</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
td.but {
|
|
border: 1px solid black;
|
|
border-radius: 5px;
|
|
padding: 2px;
|
|
margin: -2px;
|
|
font-size: 10pt;
|
|
text-align: center;
|
|
}
|
|
td.but2 {
|
|
margin-top: 5px;
|
|
font-size: 9pt;
|
|
text-align: center;
|
|
color:gray;
|
|
padding: 0;
|
|
}
|
|
th {
|
|
text-align: left;
|
|
font-size: 9pt;
|
|
}
|
|
|
|
th#main {
|
|
width: 100%;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
td {
|
|
font-size: 11pt;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
td.r {
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Matrix Calculator: Buttons</h1>
|
|
<div class="section">
|
|
|
|
<h2>Buttons</h2>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Button </th> <th id="main">Description </th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A + B</td>
|
|
<td>Adds two matrices.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A - B</td>
|
|
<td>Subtracts matrix B from matrix A.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A * B</td>
|
|
<td>Multiplies 2 matrices.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A + x</td>
|
|
<td>Adds a number to every element in matrix A.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A - x</td>
|
|
<td>Subtracts a number from every element in matrix A</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A * x</td>
|
|
<td>Multiplies a number to every element in matrix A</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A ^ -1</td>
|
|
<td>Calculates inverse of matrix A.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A ^ x</td>
|
|
<td>Raises matrix A to integer power x</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">Transp(A)</td>
|
|
<td>Calculates A transposed.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">Trace(A)</td>
|
|
<td>Calculates the trace of matrix A (sum of elements on the diagonal).</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="but">Rank(A)</td>
|
|
<td>Calculates the rank of matrix A.</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="but">Det(A)</td>
|
|
<td>Calculates the determinant of matrix A.</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="but">Min(A)</td>
|
|
<td>Finds the minimum element of matrix A.</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="but">Max(A)</td>
|
|
<td>Finds the maximum element of matrix A.</td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br />
|
|
|
|
</div>
|
|
|
|
<div class="footer">
|
|
Software created by Chibici Tiberiu.
|
|
Contact: <a href="mailto:chibicitiberiu@gmail.com">chibicitiberiu@gmail.com</a>
|
|
</div>
|
|
</body>
|
|
</html> |