Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
GNU Multiple Precision (GMP) ライブラリ
説明
GNU Multiple Precision (GMP) ライブラリは、整数、有理数、浮動小数点数に関する任意精度の演算を行うための、C で書かれた高移植性ライブラリです。Maple は、オペランドが 10^kernelopts(gmpthreshold) 以上の場合、整数演算に対し GMP ライブラリを使用します。
GMP ライブラリは、任意精度演算を高速に行うのに役立ちます。GMP が高速であるのは、基礎となる演算のタイプとして fullwords を利用したり、洗練されたアルゴリズムを使用し、様々なCPUに対して最も一般的な内部ループに対する、最適化されたアセンブリコードを含むためです。 Maple では、GMP ライブラリを使用するため、長整数演算 が大幅に高速化します。
Maple のコマンドのうち、GMP ライブラリの直接の恩恵を受けるものは、つぎのコマンドです。
+ (addition) - (subtraction) * (multiplication) / (division) ^ (exponentiation) iquo (quotient) irem (remainder) isqrt (square root) igcd (greatest common divisor) ilcm (least common multiple) ! (factorial) isprime (primality test)
Maple の次のコマンドは、GMP の恩恵を直接ではありませんが受けます。なぜなら、これらは、上記のコマンドを内部的に使用するためです。
add mult mod nextprime prevprime ithprime trunc round frac floor ceil ifactor
GMP ライブラリは、GNU Lesser General Public License Version 2.1 として配布されています。 このライセンスに合わせて、Maple が使用できるバージョンの GMP ソースコードも作成中です。これは、http://www.maplesoft.com/support/Downloads/GMP.html でダウンロードし、ご利用頂けます。ライセンスファイルのコピーが含まれます ("COPYING.LIB" 参照)。
参照
add, Arithmetic Operations, ceil, examples/GMP, factorial, frac, igcd, ilcm, iquo, irem, isprime, isqrt, kernelopts, mod, prevprime, trunc
Download Help Document