代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/439850/7700788
mdl chap2_2.mdl
Model {
Name "chap2_2"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortDataTypes
www.eeworm.com/read/439680/7703200
mdl chap2_2.mdl
Model {
Name "chap2_2"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortDataTypes
www.eeworm.com/read/439653/7703967
m exp2_2.m
clc
clear
more on
echo on
%为便于理解,在程序等执行过程中显示程序的表达式
a=16;b=12;
c=3;
d=4;
e=a+b-c*d
f=e/2
k=e\2
h=c^3
g=e+f+ ...
2+1-9
aa=sin(g)
abs(aa)
bb=2+3j
cc=conj(bb)
rbb=real(bb)
log(rbb)
www.eeworm.com/read/439446/7708558
m p2_2.m
% Program P2_2
% Generate a sinusoidal input signal
clf;
n = 0:200;
x = cos(2*pi*0.05*n);
% Compute the output signal
x1 = [x 0 0]; % x1[n] = x[n+1]
x2 = [0 x 0]; % x2[n] = x[n]
x3 = [0 0 x]; % x3
www.eeworm.com/read/439446/7708636
m p2_2.m
% Program P2_2
% Generate a sinusoidal input signal
clf;
n = 0:200;
x = cos(2*pi*0.05*n);
% Compute the output signal
x1 = [x 0 0]; % x1[n] = x[n+1]
x2 = [0 x 0]; % x2[n] = x[n]
x3 = [0 0 x
www.eeworm.com/read/439446/7708732
m p2_2.m
% Program P2_2
% Generate a sinusoidal input signal
clf;
n = 0:200;
x = cos(2*pi*0.05*n);
% Compute the output signal
x1 = [x 0 0]; % x1[n] = x[n+1]
x2 = [0 x 0]; % x2[n] = x[n]
x3 = [0 0 x]; % x3
www.eeworm.com/read/439344/7711880
uv2 keybard2.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,2, 0x0
File 1,5,
www.eeworm.com/read/439153/7716268
uv2 timer2.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
Options 1,0,0 // Ta
www.eeworm.com/read/438922/7719225
c algo2-2.c
/* algo2-2.c 实现算法2.2的程序 */
#include"c1.h"
typedef int ElemType;
#include"c2-1.h"
#include"bo2-1.c"
void MergeList(SqList La,SqList Lb,SqList *Lc) /* 算法2.2 */
{ /* 已知线性表La和Lb中的数据元素按值非递减排
www.eeworm.com/read/438922/7719227
c bo2-2.c
/* bo2-2.c 单链表线性表(存储结构由c2-2.h定义)的基本操作(12个) */
Status InitList(LinkList *L)
{ /* 操作结果:构造一个空的线性表L */
*L=(LinkList)malloc(sizeof(struct LNode)); /* 产生头结点,并使L指向此头结点 */
if(!*L) /* 存储分配失败 */