Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
plots[textplot] - テキスト文字列をプロットします
使い方
textplot( L, options);
パラメータ
L - リストまたは集合
... - オプション引数 (下を参照)
説明
この関数を使うと、2 次元空間に テキストをプロットすることができます。入力 L は 1つのテキストポイント または テキストポイントのリストか集合です。ここで 1 つのテキストポイントは、3 つの要素からなります。その最後の要素はテキストで、テキストポイントのはじめの要素で定義される座標上に置かれます。3 次元へのテキストプロットについては、plots[textplot3d] をご覧ください。
規定の整列法は、上下、左右ともに中央寄せです。オプション align = t を使い、この整列法を設定できます。ここで t は BELOW, RIGHT, ABOVE, LEFT または これらの集合です。textplot のその他のオプションは plot のオプションと同じです。plot[options] をご覧ください。
textplot は with(plots) または with(plots,textplot) で定義できます。また、plots[textplot] を使うと、定義せずにそのまま使えます。
例
with(plots): textplot([1,2,`one point in 2d`],align={ABOVE,RIGHT}); textplot({[1,2,`one point in 2d`],[3,2,`second point in 2d`]}); textplot([[2,3,`first point in 2d`],[2,1,`second point in 2d`]],color=yellow); p := plot(sin(x),x=-Pi..Pi): delta := 0.05: t1 := textplot([Pi/2,1+delta,`Local Maxima (Pi/2, 1)`],align=ABOVE): t2 := textplot([-Pi/2,-1,`Local Minima (-Pi/2, -1)`],align=BELOW): display({p,t1,t2});
参照
plot, plots[textplot3d]
Download Help Document