代码搜索:Simple
找到约 10,000 项符合「Simple」的源代码
代码结果 10,000
www.eeworm.com/read/136391/13380532
v parse.v
#############################################################################
# U N R E G I S T E R E D C O P Y
#
# You are on day 85 of your 30 day trial period.
#
# This
www.eeworm.com/read/319871/13440987
m exm0611_4.m
%exm0611_4.m 用符号计算验证三角等式 。
syms fai1 fai2;
y=simple(sin(fai1)*cos(fai2)-cos(fai1)*sin(fai2))
www.eeworm.com/read/319871/13441024
m exm0634_1.m
%exm0634_1.m
syms T t tao;
ut=exp(-t);
ht=exp(-t/T)/T;
uh_tao=subs(ut,t,tao)*subs(ht,t,t-tao);
yt=int(uh_tao,tao,0,t);
yt=simple(yt)
www.eeworm.com/read/319335/13453776
m exm05034_1.m
syms T t tao;ut=exp(-t); %定义系统输入
ht=exp(-t/T)/T; %定义系统冲激响应
uh_tao=subs(ut,t,tao)*subs(ht,t,t-tao); %运用变量替换指令形成被积函数
yt=int(uh_tao,tao,0,t); %实施卷积
yt=simple(yt)
www.eeworm.com/read/315921/13534851
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/314903/13556017
y tiny.y
/****************************************************/
/* File: tiny.y */
/* The TINY Yacc/Bison specification file */
/* Compiler Construction: Princi
www.eeworm.com/read/314631/13562964
m exm020507.m
syms T t tao
ut=exp(-t);
ht=exp(-t/T)/T;
uh_tao=subs(ut,t,tao)*subs(ht,t,t-tao);
yt=simple(simple(int(uh_tao,tao,0,t)))
www.eeworm.com/read/309215/13678781
y tiny.y
/****************************************************/
/* File: tiny.y */
/* The TINY Yacc/Bison specification file */
/* Compiler Construction: Princi
www.eeworm.com/read/308670/13696473
gcc makefile.gcc
#-----------------------------------------------#
# Makefile for unix systems #
# using a GNU C compiler #
#-----------------------------------------------#
CC=gcc
CFLAGS=-g -Wall -D__USE_FIXED_
www.eeworm.com/read/308602/13698943
m e0554.m
syms T t tao;
ut=exp(-t); %定义系统输入
ht=exp(-t/T)/T; %定义系统冲激响应
uh_tao=subs(ut,t,tao)*subs(ht,t,t-tao); %运用变量替换指令形成被积函数
yt=int(uh_tao,tao,0,t); %实施卷积
yt=simple(yt)