matlab : R2018a 64bit
OS : Windows 10 x64
typesetting : Markdown
blog : my.oschina.net/zhichengjiu
gitee : gitee.com/zhichengjiu
code
clear
clc
x=-100:100;
% 双曲
y1=sinh(x);
y2=cosh(x);
y3=tanh(x);
% 反双曲
f1=asinh(x);
f2=acosh(x);
f3=atanh(x);
% 反函数
z1=asin(x);
z2=acos(x);
z3=atan(x);
resource
- [文档] ww2.mathworks.cn/help/matlab <