📄 orient.m
字号:
function y=orient(x)
%this is a function used to solve the minimum point
%it can derive the result when the independent is x
n=size(x,2);
X=dev_ls(x,5,3,1);
X=X(:,3:198);
%%X=dev_ls(x);
p=abs(X(1,:))./sum(abs(X(1,:)));
y0=0;
for i=1:n-8
y0=y0-p(i)*log(p(i));
end
y=y0;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -