代码搜索:Simple

找到约 10,000 项符合「Simple」的源代码

代码结果 10,000
www.eeworm.com/read/154590/5636112

rc main.rc

//Microsoft Developer Studio generated resource script. // #include "resource.h" #define APSTUDIO_READONLY_SYMBOLS /////////////////////////////////////////////////////////////////////////////
www.eeworm.com/read/153634/5645948

test 1.test

# # Table creation testing # # OK : normal, simple table covering simple types create table staff ( first_name char(10), last_name char(10), dept char(10), staff_id int, height real )\p\g
www.eeworm.com/read/247932/6782897

y tiny.y

/****************************************************/ /* File: tiny.y */ /* The TINY Yacc/Bison specification file */ /* Compiler Construction: Princi
www.eeworm.com/read/471108/6897053

bnf pas.bnf

program : PROGRAM /*{its_a = "program"; }*/ newident external_files ';' block '.' external_files : /*empty*/ | '(' /*{its_a = "external-file";}*/ newident_list ')' block : opt_de
www.eeworm.com/read/195394/8158895

y tiny.y

/****************************************************/ /* File: tiny.y */ /* The TINY Yacc/Bison specification file */ /* Compiler Construction: Princi
www.eeworm.com/read/295280/8171376

c putchar.c

#include // Simple implementation of the ANSI putchar() routine, writes to UART unsigned char putchar(unsigned char ch) { while((IFG1 & UTXIFG0) == 0); //等待上一次发送完毕 TXBUF
www.eeworm.com/read/294911/8193335

scr fill.scr

# Changes the Fill Style # # Simple example to define your own fill styles. Set Fill_Layer Top Solid; Set Fill_Layer Bottom Solid; Set Fill_Layer tPlace Solid; Set Fill_Layer bPlace Solid; Se
www.eeworm.com/read/193648/8209765

y ch1-06.y

%{ #include /* we found the following required for some yacc implementations. */ /* #define YYSTYPE int */ %} %token NOUN PRONOUN VERB ADVERB ADJECTIVE PREPOSITION CONJUNCTION %% sentence
www.eeworm.com/read/193048/8255609

m ex7_13.m

% ex7_13 % 确定李雅普诺夫函数 syms x1 x2 v x1 x2; a=[0 1;-2 -3]; a11=a(1,1); a12=a(1,2); a21=a(2,1); a22=a(2,2); H=[2*a11 a21 a21 0;0 a12 a12 2*a22;a12 a22+a11 0 a21;a12 0 a11 a21+a22]; B=[-1 -1 0 0]'
www.eeworm.com/read/193048/8256065

m ex3_23.m

% ex3_23 % 计算下列两个函数的z反变换 syms z n ; y1=iztrans(10*z/(z-1)/(z-2)); n=0:5; yy1=subs(y1,n) syms n z a y2 ; y2=iztrans((1-exp(-a))*z/(z-1)/(z-exp(-a))); y2=simple(y2) yy2=subs(y2,{a,n},{ones(1,6)