搜索结果

找到约 557 项符合 end-users 的查询结果

源码 成绩查询系统

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520134.html
查看: 56

源码 学生成绩guanli

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520138.html
查看: 52

经验 win7操作说明

Windows7下IE 8使用技巧5则 IE几乎是各位菜鸟、大虾上网时的首选浏览器,有关它的常规使用技巧,相信各位早已是耳熟能详了。只要你足够用心、细心,就一定会不断“挖掘”出IE新的使用技巧来。不信,就来看看下面的几则新鲜用法吧,相信会让各位有耳目一新之感! 1.寻找失落的IE启动按钮 正 ...
https://www.eeworm.com/dl/520236.html
下载: 1
查看: 30

源码 能频值算法

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
https://www.eeworm.com/dl/520781.html
查看: 58

书籍 Fundamental Limits on a Class of Secure

Abstract—In the future communication applications, users may obtain their messages that have different importance levels distributively from several available sources, such as distributed storage or even devices belonging to other users. This scenario is the best modeled by the multilevel diversity ...
https://www.eeworm.com/dl/521171.html
下载: 1
查看: 59

技术资料 多元散射校正MSC

function [R,k,b] = msc(A) % 多元散射校正 % 输入待处理矩阵,通过多元散射校正,求得校正后的矩阵 %% 获得矩阵行列数 [m,n] = size(A); %% 求平均光谱 M = mean(A,2); %% 利用最小二乘法求每一列的斜率k和截距b for i = 1:n a = polyfit(M,A(:,i),1); if i == 1 k = a(1); b = a(2); ...
https://www.eeworm.com/dl/521313.html
查看: 229

源码 源代码LIBRARY IEEE USE IEEE

通用寄存器的部分代码 LIBRARY IEEE USE IEEE.STD_LOGIC_1164.ALL ENTITY traffic IS PORT(clk,sm,sb:IN bit mr,my,mg,br,by,bg:OUT bit ) END traffic
https://www.eeworm.com/dl/521413.html
查看: 112

源码 matlab神经网络算法通信信号调制识别

%========================开始提取加噪信号的各类特征值================================ for n=1:1:50;     m=n*Ns;     x=(n-1)*Ns; for i=x+1:m;          %提取加噪信号'signal_with_noise=y+noise'的前256个元素,抽取50次     y0(i)=signal_with_noise(i); ...
https://www.eeworm.com/dl/521470.html
查看: 88

源码 matlab神经网络算法通信信号调制识别y

%========================开始提取加噪信号的各类特征值================================ for n=1:1:50;     m=n*Ns;     x=(n-1)*Ns; for i=x+1:m;          %提取加噪信号'signal_with_noise=y+noise'的前256个元素,抽取50次     y0(i)=signal_with_noise(i); ...
https://www.eeworm.com/dl/521471.html
查看: 67

源码 VHDL4选1数据选择器

VHDL编写的4选一数据选择器 entity mux41a is        port(a,b:in std_logic;                s1,s2,s3,s4:in std_logic;            &nbs ...
https://www.eeworm.com/dl/521700.html
查看: 151