Using table instead of list
parent
ac9566d78d
commit
2bff1a4e56
1 changed files with 70 additions and 8 deletions
|
@ -7,14 +7,76 @@ LogarithmPlotter is a software to create plots and graphs with a [logarithmic sc
|
|||
To do that, LogarithmPlotter uses a system called Objects, which may seem familiar to you if you have used other plotting software like [Geogebra](https://geogebra.org).
|
||||
|
||||
An "object" is anything that can be reprensented on the graph. LogarithmPlotter allows you to create 9 types of objects:
|
||||
- Points
|
||||
- Texts (or labels)
|
||||
- Functions
|
||||
- Bode Magnitudes
|
||||
- Bode Phases
|
||||
- X Cursors (Cursors on the X scale)
|
||||
- Sequences
|
||||
- Distributions
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Symbol</th>
|
||||
<th>Type</th>
|
||||
<th>Works well in logarithmic scale</th>
|
||||
<th>Works well in non logarithmic scale</th>
|
||||
<th>Comment</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/Point.svg" alt="point symbol"></td>
|
||||
<td>Points</td>
|
||||
<td>✓</td>
|
||||
<td>✓</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/Text.svg" alt="text symbol"></td>
|
||||
<td>Texts</td>
|
||||
<td>✓</td>
|
||||
<td>✓</td>
|
||||
<td>Used as additional labels if necessary</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/Function.svg" alt="function symbol"></td>
|
||||
<td>Functions</td>
|
||||
<td>✓</td>
|
||||
<td>✓</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/Gain%20Bode.svg" alt="bode magnitude symbol"></td>
|
||||
<td>Bode Magnitudes</td>
|
||||
<td>✓</td>
|
||||
<td>X</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/Phase%20Bode.svg" alt="bode phase symbol"></td>
|
||||
<td>Bode Phases</td>
|
||||
<td>✓</td>
|
||||
<td>X</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/X%20Cursor.svg" alt="x cursor symbol"></td>
|
||||
<td>X Cursors</td>
|
||||
<td>✓</td>
|
||||
<td>✓</td>
|
||||
<td>Cursors on the x-axis</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/Sequence.svg" alt="repartition symbol"></td>
|
||||
<td>Sequences</td>
|
||||
<td>X</td>
|
||||
<td>✓</td>
|
||||
<td>There are several performance issues on the logarithmic scale related to having to calculate far to many values.<br>You should use functions defined on N as a substitute if possible.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="https://git.ad5001.eu/Ad5001/LogarithmPlotter/raw/branch/master/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/icons/objects/Repartition.svg" alt="distribution symbol"></td>
|
||||
<td>Distributions</td>
|
||||
<td>✓</td>
|
||||
<td>✓</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
**Note**: In the case of sequences, it's recommended to use the non logarithmic scale.
|
||||
|
||||
|
|
Loading…
Reference in a new issue