代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/358056/10196955
c 15hkey0.c
#define HEAPSORT struct student
#define KEY name
HEAPSORT
{ int num;
char name[8];
char sex;
int age;
double score;
};
#include "stdio.h"
#include
www.eeworm.com/read/358056/10196970
c 15ikey0.c
#define HEAPSORT struct student
#define KEY age
HEAPSORT
{ int num;
char name[8];
char sex;
int age;
double score;
};
#include "stdio.h"
#include
www.eeworm.com/read/357874/10199043
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/357506/10208358
m program_6_1.m
% Program 6_1
% Determination of the Factored Form
% of a Rational z-Transform
%
num = input('Type in the numerator coefficients = ');
den = input('Type in the denominator coefficients = ');
K =
www.eeworm.com/read/357506/10208367
m alpas.m
%Allpass reveberator
% y = alpas(x,R,a)
%
% Parameters:
% x is the input audio signal
% R is the delay in allpass structure
% a specifies the allpass filter coefficient
%
% Return value:
www.eeworm.com/read/357506/10208375
m program_15_2.m
% Program 15_2
% Spectral Analysis of a Sum of Two Sinusoids
% Using the DFT
%
clf;
N = input('Signal length = ');
R = input('DFT length = ');
fr = input('Type in the sinusoid frequencies = ');
www.eeworm.com/read/357506/10208425
m program_8_5.m
% Program 8_5
% Realization of Gray-Markel Cascaded Lattice Structure
%
% den is the denominator coefficient vector
% num is the numerator coefficient vector
% k is the lattice parameter vector
www.eeworm.com/read/357506/10208428
m program_8_3.m
% Program 8_3
% Parallel Realizations of an IIR Transfer Function
%
num = input('Numerator coefficient vector = ');
den = input('Denominator coefficient vector = ');
[r1,p1,k1] = residuez(num,den
www.eeworm.com/read/357171/10214070
m 17-1.m
I = checkerboard(10,2);
%棋盘图像
[m n]=size(I);
J=[];
for i=1:m
value=I(i,1);
num=1;
for j=2:n
if I(i,j)==value
num=num+1;
else
J=[J num val