代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/180485/9305461
m program_11_2.m
% Program 11_2
% Spectral Analysis of a Sum of Two Sinusoids
% Using the DFT
%
clf;
colordef black;
N = input('Signal length = ');
R = input('DFT length = ');
fr = input('Type in the sinusoid
www.eeworm.com/read/180485/9305482
m program_06_2.m
% Program 6_2
% 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/180485/9305537
m program_06_4.m
% Program 6_4
% Gray-Markel Cascaded Lattice Structure
% Development
% den is the denominator coefficient vector
% num is the numerator coefficient vector
% k is the lattice parameter vector
% a
www.eeworm.com/read/180478/9305593
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/376788/9306459
m kekaoxing_pso.m
clear;clc;
popsize=20;num=5;
jiage=[3,12,8,5,10];jiage=jiage';
kekaoxing=[0.96,0.93,0.85,0.8,0.75];r0=0.9;
bujian=zeros(popsize,num+2); %第num+1列放可靠性,num+2列放价格
newbuji
www.eeworm.com/read/376627/9311631
c 递推.c
#define NUM 10
#include
int i[NUM];
main()
{
int sum,n,total,k,flag,count=0;
printf("Please enter requried terms(
www.eeworm.com/read/376627/9311745
c 递归车厢.c
/**********递归题改为非递归题实例 车厢********/
#include
#define MAX 4
int stack[MAX],p=-1;
struct
{
int num;
int sign;
}train[MAX];
void sub()
{
int inc;
if(p==MAX-
www.eeworm.com/read/376593/9313074
m pospq.m
function [y,b]=pospq(p,q)
[pm,pn]=size(p); [qm,qn]=size(q); q1=zeros(qm,1);
q=cat(2,q,q1); num=0; b=[];
for i=1:pm, pp{i}=unique(p(i,:)); end
for j=1:qm, qq{j}=unique(q(j,:)); end
for i=1:qm
www.eeworm.com/read/376593/9313144
m residue.m
function f=residue(F,s)
f=sym(0); if nargin==1, syms s; end
[num,den]=numden(F); x0=solve(den);
[x,ii]=sort(double(x0)); x0=x0(ii); x=[x0;rand(1)];
kvec=find(diff(double(x))~=0); e
www.eeworm.com/read/376537/9315149
m lblocoequa.m
%TE-MAP均衡
%copyright:flyingxiang
function [Lec,saidaequa]=Lblocoequa(y,var)
%得到均衡的输出和外部信息
S=4; %状态数
P=zeros(4,4,length(y));
oute=[-1.629