⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mysort.m

📁 工程计算MATLAB code to calculate the reorthogonalized sine tapers input: N = the length of the time se
💻 M
字号:
function [y, in]=mysort(x)%%MATLAB function %%input:  x  = vector %%output: y  = sorted in decreasing order x%%        in = the index of the original x values; x(in)=y [a, i1] = sort(x);n=length(x);for i=1:n        in(i) = i1(n-i+1);        y(i) = a(n-i+1);end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -