代码搜索:Sign
找到约 10,000 项符合「Sign」的源代码
代码结果 10,000
www.eeworm.com/read/349842/10796857
m calculate_region.m
function [region, x, y] = calculate_region(features, region)
%This function recaclulated the plot region
%param = max(max(abs(features)));
%region = [-param param -param param Npoints];
regi
www.eeworm.com/read/275419/10816993
asm reconstruct.asm
;---------------------------------------------------------------------
;}
;/*
; * reconstruct()
; *
; * Returns reconstructed difference signal 'dq' obtained from
; * codeword 'i' and qu
www.eeworm.com/read/419963/10826070
m mulaw.m
function[y,a]=mulaw(x,mu)
%mulaw 非均匀PCM的mu律非线性
%Y=MULAW(X,MU)
%X=input vector
a=max(abs(x));
y=(log(1+mu*abs(x/a))./log(1+mu)).*sign(x);
www.eeworm.com/read/419963/10826077
m invmulaw.m
function x=invmulaw(y,mu)
%INVMULAW u律非线性的逆
%X=INVMULAW(Y,MU)Y=u律非线性的归一化输出
x=(((1+mu).^(abs(y))-1)./mu).*sign(y);
www.eeworm.com/read/275202/10829096
m framerot.m
% frame rotation
% Given a frame {e_i} and a rotated version {f_i},
% reconstruct the rotor.
% See Lasenby and Doran, handout 5
clf;
E1=e1;
E2=unit(e1+e2);
E3=unit(e2+2*e3);
draw(E1,'b'); GAte
www.eeworm.com/read/349314/10836028
s43 msp430x24x_mpy_08.s43
;******************************************************************************
; MSP430x24x Demo - 8x8 Signed Multiply Accumulate
;
; Description: Hardware multiplier is used to multiply two n
www.eeworm.com/read/274320/10876387
m nlspec.m
%-----------------------------------------------------------
% Compute spectrum through nonlinearity
%-----------------------------------------------------------
Nbits = 10000;
Rs = 16;
www.eeworm.com/read/348596/10881814
txt 1466.txt
#include
//求二分图最大匹配,
//返回匹配边数,w为n*m邻接矩阵,p返回与X( |X|=n )匹配的顶点编号
#define null 0
const int size=500;
int maxmatch(int n,int m,bool w[][size],int *p)
{
int p_n[siz
www.eeworm.com/read/348596/10881944
txt 1715.txt
#include
#include
char *digit = "FEDCBA9876543210"; //0123456789ABCDEF";
int p[8][8];
bool sign[16];
int main()
{
int i,j,n,k;
char ans[9];
for( k=0; k
www.eeworm.com/read/348596/10881998
txt 2413.txt
#include
#include
#include
class BigInteger
{
public:
enum { MAX = 1000 };
int len;
char cNum[MAX];
int sign;
BigInteger( int s = 0 )
{