代码搜索:Exp2
找到约 173 项符合「Exp2」的源代码
代码结果 173
www.eeworm.com/read/430375/8753269
pat greater.pat
in exp1 (2 to 0) B;
in exp2 (2 to 0) B;
out e1greater B;
begin
p0 : 000 111 ?0;
p1 : 001 000 ?1;
p3 : 111 110 ?1;
p4 : 101 110 ?0;
end;
www.eeworm.com/read/306265/13748289
m51 exp2.m51
BL51 BANKED LINKER/LOCATER V5.12 01/15/2006 18:18:25 PAGE 1
BL51 BANKED LINKER/LOCATER V5.12, INVOKED BY:
D:\KEIL\C51\BIN\BL51.EXE main.o
www.eeworm.com/read/430375/8753191
vbe greater.vbe
ENTITY greater IS
PORT(
exp1 : IN BIT_VECTOR(2 downto 0);
exp2 : IN BIT_VECTOR(2 downto 0);
e1greater : OUT BIT
);
END greater;
ARCHITECTURE greater_arch OF greater IS
begin
e1greater
www.eeworm.com/read/155317/11885373
c ftoa.c
#include
typedef union {
long L;
float F;
} LF_t;
char *ftoa(float f, int *status)
{
long mantissa, int_part, frac_part;
short exp2;
LF_t x;
char *p;
static char outbuf[15]
www.eeworm.com/read/172774/5382132
c ftoa.c
#include
typedef union {
long L;
float F;
} LF_t;
char *ftoa(float f, int *status)
{
long mantissa, int_part, frac_part;
short exp2;
LF_t x;
char *p;
static char outbuf[15]
www.eeworm.com/read/159853/5580363
c ftoa.c
#include
typedef union {
long L;
float F;
} LF_t;
char *ftoa(float f, int *status)
{
long mantissa, int_part, frac_part;
short exp2;
LF_t x;
char *p;
static char outbuf[15]
www.eeworm.com/read/476329/6765409
txt mat.txt
程序test.m
% 验证FFT MegaCore的功能
clc;
clear;
% 生成两个64点的1到100之间的实数随机序列a,b
a = rand(1, 64);
a = a * 100;
a = int8(a); % 去掉小数部分
b = rand(1, 64);
b = b * 100;
b = int8(b); % 去掉小数部分
% 变成复数
x = do