[size=16.0000pt]pi | [size=16.0000pt] [size=16.0000pt]圆周率[size=16.0000pt] [size=16.0000pt]file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps1.png |
[size=16.0000pt]exp(1) | [size=16.0000pt]自然对数的底数e |
[size=16.0000pt]i [size=16.0000pt]或[size=16.0000pt]j | [size=16.0000pt]虚数单位 |
[size=16.0000pt]Inf[size=16.0000pt]或[size=16.0000pt] inf | 无穷大 file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps2.png |
a+b | 加法 |
a-b | 减法 |
a*b | 矩阵乘法 |
a.*b | 数组乘法 |
a/b | 矩阵右除 |
a\b | 矩阵左除 |
a./b | 数组右除 |
a.\b | 数组左除 |
a^b | 矩阵乘方 |
a.^b | 数组乘方 |
-a | 负号 |
’ | 共轭转置 |
.' | 一般转置 |
== | 等于 |
< | 小于 |
> | 大于 |
<= | 小于或等于 |
>= | 大于或等于 |
~= | 不等于 |
指数函数 | exp(x) | 以e为底数 |
对数函数 | log(x) | 自然对数,即以e为底数的对数 |
log10(x) | 常用对数,即以10为底数的对数 | |
log2(x) | 以2为底数的x的对数 | |
开方函数 | sqrt(x) | 表示x的算术平方根 |
绝对值函数 | abs(x) | 表示实数的绝对值以及复数的模 |
三角函数 (自变量的单位为弧度) | sin(x) | 正弦函数 |
cos(x) | 余弦函数 | |
tan(x) | 正切函数 | |
cot(x) | 余切函数 | |
sec(x) | 正割函数 | |
csc(x) | 余割函数 | |
反三角函数 | asin(x) | 反正弦函数 |
acos(x) | 反余弦函数 | |
atan(x) | 反正切函数 | |
acot(x) | 反余切函数 | |
asec(x) | 反正割函数 | |
acsc(x) | 反余割函数 | |
双曲函数 | sinh(x) | 双曲正弦函数 |
cosh(x) | 双曲余弦函数 | |
tanh(x) | 双曲正切函数 | |
coth(x) | 双曲余切函数 | |
sech(x) | 双曲正割函数 | |
csch(x) | 双曲余割函数 | |
反双曲函数 | asinh(x) | 反双曲正弦函数 |
acosh(x) | 反双曲余弦函数 | |
atanh(x) | 反双曲正切函数 | |
acoth(x) | 反双曲余切函数 | |
asech(x) | 反双曲正割函数 | |
acsch(x) | 反双曲余割函数 | |
求角度函数 | atan2(y,x) | 以坐标原点为顶点,x轴正半轴为始边,从原点到点(x,y)的射线为终边的角,其单位为弧度,范围为( file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps3.jpg, file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps4.jpg] |
数论函数 | gcd(a,b) | 两个整数的最大公约数 |
lcm(a,b) | 两个整数的最小公倍数 | |
排列组合函数 | factorial(n) | 阶乘函数,表示n的阶乘 |
复数函数 | real(z) | 实部函数 |
imag(z) | 虚部函数 | |
abs(z) | 求复数z的模 | |
angle(z) | 求复数z的辐角,其范围是( file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps5.jpg, file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps6.jpg] | |
conj(z) | 求复数z的共轭复数 | |
求整函数与截尾函数 | ceil(x) | 表示大于或等于实数x的最小整数 |
floor(x) | 表示小于或等于实数x的最大整数 | |
round(x) | 最接近x的整数 | |
最大、最小函数 | max([a,b,c,...]) | 求最大数 |
min([a,b,c,..]) | 求最小数 | |
符号函数 | sign(x) | file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps7.jpg |
compose(f,g) 返回值为f(g(y)) compose(f,g,z) 返回值为f(g(z)) compose(f,g,x,.z) 返回值为f(g(z)) compose(f,g,x,y,z) 返回值为f(g(z)) |
syms 表达式中包含的变量 factor(表达式) |
syms 表达式中包含的变量 expand(表达式) |
syms 表达式中包含的变量 collect(表达式,指定的变量) |
syms 表达式中包含的变量 simplify(表达式) |
syms 表达式和代换式中包含的所有变量 subs(表达式,要替换的变量或式子,代换式) |
maple(‘convert(表达式,form)’’)将表达式转换成form的表示方式 maple(‘convert(表达式,form, x)’) 指定变量为x,将依赖于变量 x的函数转换成form的表示方式(此指令仅对form为exp与sincos的转换式有用) |
solve(’方程’,’变元’) |
maple('maple中解不等式的命令')* |
maple(' solve(不等式)') maple(' solve(不等式,变元)' ) maple(' solve({不等式},变元)' ) maple(' solve(不等式,{变元})' ) maple(' solve({不等式},{变元})' ) |
maple('maple中解不等式组的命令') |
即:maple(' solve({不等式组},{变元组})' ) |
方法1:先产生横坐标x的取值和相应的纵坐标y的取值,然后执行命令: plot(x,y) |
方法2:fplot('f(x)',[xmin,xmax]) fplot('f(x)',[xmin,xmax,ymin,ymax]) |
方法3:ezplot('f(x)') ezplot('f(x)' ,[xmin,xmax]) ezplot('f(x)' ,[xmin,xmax,ymin,ymax]) |
syms x limit(f(x), x, a) |
syms x limit(f(x), x, a,’left’) |
syms x limit(f(x), x, a,’right’) |
diff('f(x)') diff('f(x)','x') |
Syms x Diff(f(x)) |
syms x diff(f(x), x) |
diff('f(x)',n) diff('f(x)','x',n) |
syms x diff(f(x),n) |
syms x diff(f(x), x,n) |
maple('implicitdiff(f(x,y)=0,y,x)')* |
file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps8.jpg |
int('f(x)') int ('f(x)','x') |
syms x int(f(x)) |
syms x int(f(x), x) |
int('f(x)',a,b) int ('f(x)','x',a,b) |
syms x int(f(x),a,b) |
syms x int(f(x), x,a,b) |
maple(' with(student)' ) 加载student函数库后,才能使用changevar命令 maple(' changevar( m(x)=p(u), Int(f(x),x) ) ' ) 把积分表达式中的m(x)代换成p(u) |
maple(' with(student)' ) 加载student函数库后,才能使用intparts命令 maple('intparts(Int(f(x),x),u)' ) 指定u,用分部积分公式 file:///C:/Users/312/AppData/Local/Temp/ksohtml20128/wps9.jpg进行计算 |
syms n symsum(f(n), n ,a ,b ) |
maple('product(f(n),n=a..b)') |
syms x Taylor(f(x), x, n, a) |
syms s t laplace( f(t), t, s ) 拉普拉斯变换 ilaplace( F(s), s, t ) 拉普拉斯变换的逆变换 |
syms t ω fourier( f(t), t, ω) 傅立叶变换 ifourier( F(ω), ω, t ) 傅立叶变换的逆变换 |
syms n z ztrans( f(n), n, z) Z变换 iztrans( F(z), z, n ) Z变换的逆变换 |
maple('with(student) ') maple('Maple中求定积分近似值的命令') |
Dsolve('微分方程','自变量') dsolve('微分方程','初始条件或边界条件','自变量') |
Dsolve('微分方程组','自变量') dsolve('微分方程组','初始条件或边界条件','自变量') |
139.5 KB, 下载次数: 0, 下载积分: 体力 -2 点
欢迎光临 数学建模社区-数学中国 (http://www.madio.net/) | Powered by Discuz! X2.5 |