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

📄 at.m

📁 Matsig is an object-oriented signal class library for MATLAB 6.5 and later. It implements a signal c
💻 M
字号:
function I = at(x,t)% AT  Return element index corresponding to a time value.%% I = AT(X,T)  Return element index I at time location t in time object X.% $Id: at.m 65 2005-05-16 07:06:26Z mairas $I=round((t-x.beg)*x.fs+1);idx=find(I<1);I(idx)=1;idx=find(I>x.num);I(idx)=x.num;

⌨️ 快捷键说明

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