排序:上传时间 相关度 下载量 查看数

Length 115

按分类查找:

  • 输入数组作为sort的参数调用sort 即可实现排序(不减序排列) //或者利用重载的方法

    输入数组作为sort的参数调用sort 即可实现排序(不减序排列) //或者利用重载的方法,参数是(int[] number, 0, number.length-1)

    /dl/483430.html

    标签: sort 输入 数组 参数

    上传时间: 2017-08-30

    上传用户:LIKE

  • net_tcp.h

    /* ********************************************************************************************************* *                                             uC/TCP-IP V2 *       ...

    /dl/508248.html

    标签: tcp uCOS-II

    上传时间: 2015-11-22

    上传用户:the same kong

  • fft analysis

          Use the fast Fourier transform function fft to analyse following signal. Plot the original signal, and the magnitude of its spectrum linearly and logarithmically. Apply Hamming window to reduce the leakage.   .   The hamming window can be coded in Matlab ...

    /dl/508267.html

    标签: matlab fft

    上传时间: 2015-11-23

    上传用户:石灰岩123

  • 透明音乐播放器

    [开源 绿色软件] [运行环境 Windows XP/7/8/10] [语言 简体/繁體/English/Unicode] A cool music player. Powered by Bass and BassVis. 极简本地音乐播放器,透明、纯文本界面。支持轻媒体库、歌词、可视化。最小化到托盘,占用资源少,适合边听音乐边工作。 应网友要求,加入了Tag编辑、自动切换列表、播放队列、鼠标手 ...

    /dl/511585.html

    标签: 透明 音乐播放器

    上传时间: 2016-06-10

    上传用户:fanghua

  • matlab 滑动相关计算程序

    function [Rs,Ps]=move_corr(X,Y,a) %%%--- this function is for moving correlation %%%--- X,Y is the imput data, a is the length of the moving window %%%--- Rs is the spwarman correlation coeffcient, Ps is the p_vaue

    /dl/516485.html

    标签: matlab 计算 程序

    上传时间: 2017-12-27

    上传用户:Clocks

  • 短时过零率和短时能量

    % Computation of ST-ZCR and STE of a speech signal. % % Functions required: zerocross, sgn, winconv. % % Author: Nabin Sharma % Date: 2009/03/15 [x,Fs] = wavread('so.wav'); % word is: so x = x.'; N = length(x); % signal length n = 0:N-1; ts = n*(1/Fs); % time for signal % define the window wintyp ...

    /dl/520780.html

    标签: 短时过零率和短时能量

    上传时间: 2019-09-23

    上传用户:minwenji

  • 能频值算法

    nx=length(x(:)); if nargin<2 || isempty(win)     win=nx; end if nargin<4 || isempty(m)     m=''; end nwin=length(win); if nwin == 1     lw = win;     w = ones(1,lw); else     lw = nwin;     w = win(:)'; end

    /dl/520781.html

    标签: 能频值

    上传时间: 2019-09-23

    上传用户:minwenji

  • Radio Propagation Measurement

    Radio propagation measurements and channel modelling continue to be of fundamental importance to radio system design. As new technology enables dynamic spectrum access and higher data rates, radio propagation effects such as shadowing, the presence of multipath and frequency dispersion are the limit ...

    /dl/522080.html

    标签: Propagation Measurement Radio

    上传时间: 2020-06-01

    上传用户:shancjb

  • Electromagnetic+Transients+in+Power+Cables

    For more than a century, overhead lines have been the most commonly used technology for transmitting electrical energy at all voltage levels, especially on the highest levels. However, in recent years, an increase in both the number and length of HVAC cables in the transmission networks of different ...

    /dl/522318.html

    标签: Electromagnetic Transients Cables Power in

    上传时间: 2020-06-07

    上传用户:shancjb

  • lagr.m

    function y=lagr(x0,y0,x) %x0,y0为节点 %x是插值点 n=length(x0); m=length(x); for i=1:m z=x(i); s=0.0; for k=1:n p=1.0; for j=1:n if j~=k p=p*(z-x0(j))/(x0(k)-x0(j)); end end s=p*y0(k)+s; end y(i)=s; end

    /dl/522412.html

    标签: lagr

    上传时间: 2020-06-09

    上传用户:shiyc2020