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

📄 dec.m

📁 描述混沌现象的判断及其使用MATLAB对该过程的仿真的程序源码
💻 M
字号:
function Y = dec(X,w);%Y = dec(X) downsampling of a matrix%%    X - input matrix%    w - choose rows or columns%        w == 1: downsample rows by 2%        w == 2: downsample columns by 2%%    Y - output matrix%    (Oliver Rockinger 16.08.99)[a b] = size(X);if w == 1  Y = X(1:2:a, :);else  Y = X(:, 1:2:b);end;   

⌨️ 快捷键说明

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