📄 acsc.m
字号:
function x = acsc(x)
% acsc 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');
acsc0 = acsc(x1.tc(1,1));
xx=x1*(x1*x1-1)^0.5;
dx1 = x1.tc(:,2:end).*(1:p-1);
y = filter( 1,xx.tc,dx1)./(1:p-1);
xx1.tc(i,:)=[acsc0 y];
end
x.tc = reshape(xx1.tc, m,n,p);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -