代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/423266/10574998
m m5_27.m
num1=[1 1 3];
den1=[1 4 2 1];
G1=tf(num1,den1);
num2=[5 6 7];
den2=[1 2 3 4];
G2=tf(num2,den2);
num3=[1 8 171];
den3=[1 6 11 6];
G3=tf(num3,den3);
num4=[5 6];
den4=[1 10 80 128];
G4=tf(num4
www.eeworm.com/read/423266/10575073
m m5_26.m
den={[1 2 1],[1 2];[1 3 2],[1 5 6]};
G1=tf(num,den)
z={[] [-1];[-1] [-2]};
p={[-1 -3] [-2 -4];[-2 -3] [-3 -4]};
k=[1.2 1;1 1];
G2=zpk(z,p,k)
Gs=series(G1,G2,2,1)
Gp=parallel(G1,G2,2,2,1,1)
www.eeworm.com/read/423266/10575188
m m6_21.m
%a
wn=1;zet=[0:0.1:1,2,3,5];
hold on
for i=1:length(zet)
num=wn^2;den=[1,2*zet(i)*wn,wn^2];
bode(num,den);
end
hold off
%b
wn=[0.1:0.1:1]; zet=0.707;
hold on
for i=1:length(wn)
n
www.eeworm.com/read/278058/10577758
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
www.eeworm.com/read/160033/10578139
h mulglobal.h
/*
Copyright (c) 1990 Massachusetts Institute of Technology, Cambridge, MA.
All rights reserved.
This Agreement gives you, the LICENSEE, certain rights and obligations.
By using the software, you ind
www.eeworm.com/read/159990/10581428
java exceptiondemo8.java
/**
*A simple user-defined exception handling program.pay more attention!
*2004.12.27. xhcprince
*"The return statement may be used in the catch block to return the control
* back to the exception
www.eeworm.com/read/159990/10581472
java exceptiondemo7.java
/**
*A simple exception handling program using throws
*"In the method declaration,
* specify the type of exception thst can be thrown,using the throws modifier"
*2004.12.26. xhcprince
*/
class
www.eeworm.com/read/159990/10581890
java simpleclassdemo3.java
/**
*Another simple class demonstration program to show the inheritence
*/
class Add
{
int num1;
int num2;
public int addNumber()
{
int sum = 0;
sum = num1 + num2;
retu
www.eeworm.com/read/159948/10584851
txt 考试1.txt
#include
#include
#include
#define N 3
typedef struct sc
{
int num[N];
int score[N];
}student;
void paixu(int array[],int a[])
{
int temp,temp1;
for(
www.eeworm.com/read/423094/10588535
c gtitm.c
/*
* Copyright (c) 2003-2005 Frank Dabek
* Massachusetts Institute of Technology
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this sof