代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/372156/9518941
bak stu.c.bak
/* file_name: init.c
* author: wangtiezhen miuliang @ Xidian University
* description:
*/
struct stu *inputstu(int num, int password,char name[], int age, char addr[]) ;
int readstudent(void)
www.eeworm.com/read/372156/9518953
c reference.c
#include
#include
#include
#include
struct teacher
{ int num;
int password;
char name[20];
struct teacher *lchild;
struct teacher *rchild ;
};
www.eeworm.com/read/372113/9521070
txt classification.txt
Ada_Boost@Num iter, type, params:@[100,'Stumps',[]]@L
Backpropagation_Batch@Nh, Theta, Convergence rate:@[5, 0.1, 0.1]@L
Backpropagation_CGD@Nh, Theta:@[5, 0.1]@L
Backpropagation_Quickprop@Nh, Thet
www.eeworm.com/read/371917/9531113
m chap3_1.m
%Expert PID Controller
clear all;
close all;
ts=0.001;
sys=tf(5.235e005,[1,87.35,1.047e004,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
u_1=0.0;u_2=0.0;u_3=0.0;
y_1=0;y_2=0;y_3=0
www.eeworm.com/read/371636/9543964
m tfrview.m
function tfrview(tfr,sig,t,method,param,p1,p2,p3,p4,p5);
%TFRVIEW Visualization of time-frequency representations.
% TFRVIEW(TFR,SIG,T,METHOD,PARAM,P1,P2,P3,P4,P5)
% allows to visualize
www.eeworm.com/read/371636/9544287
m tfrview2.m
function tfrview(tfr,sig,t,method,param,map,p1,p2,p3,p4,p5);
%TFRVIEW Visualization of time-frequency representations.
% TFRVIEW(TFR,SIG,T,METHOD,PARAM,MAP,P1,P2,P3,P4,P5)
% allows to visualize a tim
www.eeworm.com/read/371636/9544353
m sgrpdlay.m
function [gd,fnorm]=sgrpdlay(x,fnorm);
%SGRPDLAY Group delay estimation of a signal.
% [GD,FNORM]=SGRPDLAY(X,FNORM) estimates the group delay of
% signal X at the normalized frequency(ies) FNORM.
%
%
www.eeworm.com/read/371355/9554791
cpp 标准pso.cpp
#include"stdio.h"
#include"stdlib.h"
#include"time.h"
#include"math.h"
#define rdint(i)(rand()%(int)(i))
#define rdft()(float)((double)rdint(16384)/(16383.0))
#define rnd(a,b) (rdint((int)(b
www.eeworm.com/read/371330/9555818
txt c2.txt
经典C语言程序100例(41-50)
经典C语言程序100例(41-50)
【程序41】
题目:学习static定义静态变量的用法
1.程序分析:
2.程序源代码:
#include
"stdio.h"
varfunc()
{
int var=0;
static int
static_var=0;
printf("\40:v
www.eeworm.com/read/175135/9558522
cpp leftover.cpp
// leftover.cpp -- overloading the left() function
#include
unsigned long left(unsigned long num, unsigned ct);
char * left(const char * str, int n = 1);
int main()
{
using nam