Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
student[slope] - 直線の傾きを調べます
使い方
slope(equation)
slope(equation, y, x)
slope(equation, y(x))
slope(p1, p2)
パラメータ
qeuation - 曲線の方程式
y, x - 独立、従属変数 (たいていの場合は省略可)
p1, p2 - 2 次元の点 ([a, b] や [c, d] など)
説明
slope 関数では、2 点や方程式で定義された直線の傾きを調べます。
方程式が y = f(x) の形をしているとき、従属変数は y、独立変数は x として扱われます。未知の変数が 3 つ以上あるときや、違う形の方程式の形を使用した場合は、この区別があいまいになりますが、その場合は従属変数と独立変数の名前をそれぞれ y, x として引数に指定することで解決できます。
with(student,slope) を実行すると, このコマンドのみを定義できます。
例
with(student): slope(y = 3*x+5);
slope(y = a*x+5, y, x);
slope(2*y+4 = x-3, x, y);
slope(2*y+4 = x-3, x(y));
参照
intersect, student, student[midpoint], student[showtangent]
Download Help Document