搜索结果
找到约 557 项符合
end-users 的查询结果
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 学生成绩guanli
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
经验 win7操作说明
Windows7下IE&nbsp;8使用技巧5则
IE几乎是各位菜鸟、大虾上网时的首选浏览器,有关它的常规使用技巧,相信各位早已是耳熟能详了。只要你足够用心、细心,就一定会不断“挖掘”出IE新的使用技巧来。不信,就来看看下面的几则新鲜用法吧,相信会让各位有耳目一新之感!
1.寻找失落的IE启动按钮
正 ...
源码 能频值算法
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
书籍 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 ...
技术资料 多元散射校正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);
...
源码 源代码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
源码 matlab神经网络算法通信信号调制识别
%========================开始提取加噪信号的各类特征值================================
for n=1:1:50;
&nbsp; &nbsp; m=n*Ns;
&nbsp; &nbsp; x=(n-1)*Ns;
for i=x+1:m;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; %提取加噪信号'signal_with_noise=y+noise'的前256个元素,抽取50次
&nbsp; &nbsp; y0(i)=signal_with_noise(i); ...
源码 matlab神经网络算法通信信号调制识别y
%========================开始提取加噪信号的各类特征值================================
for n=1:1:50;
&nbsp; &nbsp; m=n*Ns;
&nbsp; &nbsp; x=(n-1)*Ns;
for i=x+1:m;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; %提取加噪信号'signal_with_noise=y+noise'的前256个元素,抽取50次
&nbsp; &nbsp; y0(i)=signal_with_noise(i); ...
源码 VHDL4选1数据选择器
VHDL编写的4选一数据选择器
entity mux41a is
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; port(a,b:in
std_logic;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;s1,s2,s3,s4:in std_logic;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbs ...