Translating chapter 0.

Ad5001 2022-02-17 17:00:31 +00:00
parent ca8528e245
commit c7f2200a8e

@ -0,0 +1,94 @@
[← Chapitre précédent](Manuel-d'utilisation) | Chapitre 0 : Introduction ([≡ Index](User-Manual)) | [Chapitre suivant →](Manuel-d'utilisation-:-Chapitre-1)
# Introduction : Comment fonctionne LogarithmPlotter
LogarithmPlotter est un logiciel permettant de créer des tracés et des graphiques avec une [échelle logarithmique](https://en.wikipedia.org/wiki/Logarithmic_scale), le type le plus connu étant les [diagrammes de Bode](https://en.wikipedia.org/wiki/Bode_plot), que LogarithmPlotter aide à créer sous forme asymptotique. Bien que les échelles logarithmiques soient le principal intérêt de LogarithmPlotter, ce logiciel supporte également les échelles non logarithmiques, ce qui peut être nécessaire pour utiliser certaines fonctions.
Pour ce faire, LogarithmPlotter utilise un système appelé Objets, qui peut vous sembler familier si vous avez utilisé d'autres logiciels de traçage comme [Geogebra](https://geogebra.org).
Un "objet" est tout ce qui peut être représenté sur le graphique. LogarithmPlotter vous permet de créer 9 types d'objets :
<table>
<thead>
<tr>
<th>Symbole</th>
<th>Type</th>
<th>Fonctionne bien dans l'échelle logarithmique</th>
<th>Fonctionne bien dans l'échelle non logarithmique</th>
<th><a href="#positioning-objects" >Autorise le positionnement du pointeur</a></th>
<th>Commentaire</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="symbole de point"></td>
<td>Points</td>
<td></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="symbole de texte"></td>
<td>Textes</td>
<td></td>
<td></td>
<td></td>
<td>Utilisés comme textes supplémentaires si nécessaire</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="symbole de fonction"></td>
<td>Fonctions</td>
<td></td>
<td></td>
<td>X</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="symbole de gain de bode"></td>
<td>Gains de Bode</td>
<td></td>
<td>X</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="symbole de phase bode"></td>
<td>Phases de Bode</td>
<td></td>
<td>X</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="symbole du curseur x"></td>
<td>Curseurs X</td>
<td></td>
<td></td>
<td></td>
<td>Curseurs sur l'axe des abscisses</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="symbole de séquence"></td>
<td>Sequences</td>
<td>X</td>
<td></td>
<td>X</td>
<td>Il y a plusieurs problèmes de performance sur l'échelle logarithmique liés au fait de devoir calculer beaucoup trop de valeurs.<br>Vous devriez utiliser des fonctions définies sur N comme substitut si 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="symbole de répartition"></td>
<td>(Fonctions de) Répartition</td>
<td></td>
<td></td>
<td>X</td>
<td></td>
</tr>
</tbody>
</table>
LogarithmPlotter créera également ses propres objets automatiquement lorsque cela est nécessaire (par exemple, les sommes des gains et des phases de bode).
[Chapitre suivant →](Manuel-d'utilisation-:-Chapitre-1)