📄 acotanh.m
字号:
function x = acotanh(x)
% acotanh for adtayl objects.
[m,n,p] = size(x.tc);
for i=1:m*n
x1.tc= reshape(x.tc(i,:),[1, 1,p]);
x1=class(struct('tc',x1.tc),'adtayl');
acotanh0 = acoth(x1.tc(1,1));
xx=(1-x1*x1);
dx1 = x1.tc(:,2:end).*(1:p-1);
y = filter( 1,xx.tc,dx1)./(1:p-1);
xx1.tc(i,:)=[acotanh0 y];
end
x.tc = reshape(xx1.tc, m,n,p);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -