代码搜索结果
找到约 16,374 项符合
Op-Amp 的代码
reflec.m
function [r,t]=reflec(tmax,dt,amp,m,n)
% [r,t]=reflec(tmax,dt,amp,m,n)
% [r,t]=reflec(tmax,dt,amp,m)
% [r,t]=reflec(tmax,dt,amp)
% [r,t]=reflec(tmax,dt)
%
% REFLEC creates a psuedo random reflectivit
clip.m
function trout=clip(trin,amp);
% trout=clip(trin,amp)
%
% CLIP adjusts only those samples on trin which are greater
% in absolute value than 'amp'. These are set equal to amp but
% with the sign of t
statemachine1.hier_info
|statemachine1
clk => op~reg0.CLK
clk => current_state~3.IN1
reset => op~reg0.ENA
reset => current_state~4.IN1
din => Selector1.IN2
din => Selector1.IN3
din => Selector2.IN3
din => Selector0.I
sem_trywait.c
/* include sem_trywait */
#include "unpipc.h"
#include "semaphore.h"
int
mysem_trywait(mysem_t *sem)
{
struct sembuf op;
if (sem->sem_magic != SEM_MAGIC) {
errno = EINVAL;
return(-1);
}
op.
sem_post.c
/* include sem_post */
#include "unpipc.h"
#include "semaphore.h"
int
mysem_post(mysem_t *sem)
{
struct sembuf op;
if (sem->sem_magic != SEM_MAGIC) {
errno = EINVAL;
return(-1);
}
op.sem_nu
sem_wait.c
/* include sem_wait */
#include "unpipc.h"
#include "semaphore.h"
int
mysem_wait(mysem_t *sem)
{
struct sembuf op;
if (sem->sem_magic != SEM_MAGIC) {
errno = EINVAL;
return(-1);
}
op.sem_nu
jm99a1.m
%99年中国大学生数学建模竞赛a题:自动化车床管理模型一
%参见《数学的实践与认识》2000.1.p36-40
clear;opt=inf;
for n=[10 20 30]
for m=[200 300 400]
[x0,op]=fmins('jm99afun',[n m]);
if op(8)
jm99a.m
function [x,opt]=jm99a(n,m)
%99年中国大学生数学建模竞赛a题:自动化车床问
%参见《数学的实践与认识》2000.1.p36-40
opt=inf;
for n=10:5:30
for m=300:10:400
[x0,op]=fmins('jm99afun',[n m]);
if op(8)
amp.vhd
library ieee ;
use ieee.std_logic_1164.all ;
use ieee.std_logic_arith.all ;
entity amp is
port (clk : in std_logic ;
panel : in std_logic_vector (7 downto 0);
amp : in std_logic
test-i386-muldiv.h
void glue(glue(test_, OP), b)(long op0, long op1)
{
long res, s1, s0, flags;
s0 = op0;
s1 = op1;
res = s0;
flags = 0;
asm ("push %4\n\t"
"popf\n\t"
stringif