275 lines
6.2 KiB
HTML
275 lines
6.2 KiB
HTML
|
<!-- saved from url=(0014)about:internet -->
|
||
|
<html>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=9" />
|
||
|
<head>
|
||
|
<title>Matrix Calculator: Calculator window</title>
|
||
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
||
|
<style type="text/css">
|
||
|
td.but {
|
||
|
font-size: 10pt;
|
||
|
font-weight: bold;
|
||
|
text-align: right;
|
||
|
color: gray;
|
||
|
}
|
||
|
|
||
|
td.sm {
|
||
|
font-size: 10pt;
|
||
|
}
|
||
|
|
||
|
th {
|
||
|
text-align: left;
|
||
|
font-size: 9pt;
|
||
|
background: #FAFAFA;
|
||
|
}
|
||
|
|
||
|
th#main {
|
||
|
width: 90%;
|
||
|
}
|
||
|
|
||
|
th#name {
|
||
|
width: 20%;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
font-size: 11pt;
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
|
||
|
td.r {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Matrix Calculator: Calculator window</h1>
|
||
|
|
||
|
<div class="section">
|
||
|
<h2>Content</h2>
|
||
|
<ul>
|
||
|
<li><a href="#calc">Calculator window</a></li>
|
||
|
<li><a href="#file">The file menu</a></li>
|
||
|
<li><a href="#matrix">The matrix menu</a></li>
|
||
|
<li><a href="#help">The help menu</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<div class="section">
|
||
|
<a name="calc"></a>
|
||
|
<h2>Calculator window</h2>
|
||
|
<img src="img/matrix-calc0.png" /> <br /> <br />
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th></th> <th id="name">Name</th> <th id="main">Description </th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">1</td>
|
||
|
<td class="sm">Matrix list</td>
|
||
|
<td>This is where all the created matrices are.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">2</td>
|
||
|
<td class="sm">Preview pane</td>
|
||
|
<td>The matrix selected in the list is displayed here.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">3</td>
|
||
|
<td class="sm">Slot A</td>
|
||
|
<td>The first term of operations.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">4</td>
|
||
|
<td class="sm">Slot B</td>
|
||
|
<td>The second term of operations.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">5</td>
|
||
|
<td class="sm">Result</td>
|
||
|
<td>This is where the result of the calculation appears.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">6</td>
|
||
|
<td class="sm">Functions</td>
|
||
|
<td>All the functions are defined here. For a more detailed explanation, check the <a href="buttons.htm"><em>What all the buttons do</em></a> article.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">7</td>
|
||
|
<td class="sm">Output</td>
|
||
|
<td>If there are any errors (like incompatible matrices), they are displayed here.</td>
|
||
|
</tr>
|
||
|
|
||
|
</table>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="section">
|
||
|
<a name="file"></a>
|
||
|
<h2>The file menu</h2>
|
||
|
<img src="img/matrix-calc1.png" /> <br /> <br />
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th></th> <th id="name">Name</th> <th id="main">Description </th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">1</td>
|
||
|
<td class="sm">New worksheet</td>
|
||
|
<td>Creates a new worksheet*.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">2</td>
|
||
|
<td class="sm">Open...</td>
|
||
|
<td>Opens an existing worksheet.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">3</td>
|
||
|
<td class="sm">Save</td>
|
||
|
<td>Saves current worksheet.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">4</td>
|
||
|
<td class="sm">Save as...</td>
|
||
|
<td>Saves as a new worksheet.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">5</td>
|
||
|
<td class="sm">Import from csv file...</td>
|
||
|
<td>Imports matrices from a Comma Separated Value file. This feature is not (yet) available.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">6</td>
|
||
|
<td class="sm">Import from worksheet...</td>
|
||
|
<td>Imports matrices from an existing worksheet. This feature is not (yet) available.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">7</td>
|
||
|
<td class="sm">Preferences</td>
|
||
|
<td>Opens the preferences window.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">8</td>
|
||
|
<td class="sm">Exit</td>
|
||
|
<td>Closes the application.</td>
|
||
|
</tr>
|
||
|
|
||
|
</table>
|
||
|
<br />
|
||
|
<p style="font-size:8pt;">* A worksheet is defined as a collection of matrices.</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="section">
|
||
|
<a name="matrix"></a>
|
||
|
<h2>The matrix menu</h2>
|
||
|
<p>This menu can also be opened by right clicking inside the matrix list.</p>
|
||
|
<img src="img/matrix-calc2.png" /> <br /> <br />
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th></th> <th id="name">Name</th> <th id="main">Description </th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">1</td>
|
||
|
<td class="sm">New matrix...</td>
|
||
|
<td>Creates a new matrix.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">2</td>
|
||
|
<td class="sm">Edit selected...</td>
|
||
|
<td>Edits the selected matrix.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">3</td>
|
||
|
<td class="sm">Delete selected</td>
|
||
|
<td>Deletes the selected matrices.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">4</td>
|
||
|
<td class="sm">Duplicate selected...</td>
|
||
|
<td>Creates a new matrix based on the selected one.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">5</td>
|
||
|
<td class="sm">Insert in slot A.</td>
|
||
|
<td>Inserts the matrix in slot A (the first term).</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">6</td>
|
||
|
<td class="sm">Insert in slot B.</td>
|
||
|
<td>Inserts the matrix in slot B (second term).</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">7</td>
|
||
|
<td class="sm">Copy</td>
|
||
|
<td>Copies the selected matrices into memory. This feature is not (yet) available.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">8</td>
|
||
|
<td class="sm">Paste</td>
|
||
|
<td>Pastes matrices from memory. This feature is not (yet) available.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">9</td>
|
||
|
<td class="sm">Copy</td>
|
||
|
<td>Paste matrix from another application. This feature is not (yet) available.</td>
|
||
|
</tr>
|
||
|
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<div class="section">
|
||
|
<a name="help"></a>
|
||
|
<h2>The help menu</h2>
|
||
|
<img src="img/matrix-calc3.png" /> <br /> <br />
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th></th> <th id="name">Name</th> <th id="main">Description </th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">1</td>
|
||
|
<td class="sm">About</td>
|
||
|
<td>Opens a window with information about <em>Tibi's Mathematics Suite</em>.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td class="but">2</td>
|
||
|
<td class="sm">Help</td>
|
||
|
<td>Displays help using the application.</td>
|
||
|
</tr>
|
||
|
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<div class="footer">
|
||
|
Software created by Chibici Tiberiu.
|
||
|
Contact: <a href="mailto:chibicitiberiu@gmail.com">chibicitiberiu@gmail.com</a>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|