代码搜索:Sign

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

代码结果 10,000
www.eeworm.com/read/424281/10467244

c print.c

/* ieee-utils/print.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU G
www.eeworm.com/read/424063/10499842

m cloop.m

function [ac,bc,cc,dc] = cloop(a,b,c,d,e,f) %CLOOP Close unity feedback loops. -->O-->[System]--+---> % | | %
www.eeworm.com/read/424063/10500055

m feedback.m

function [a,b,c,d] = feedback(a1,b1,c1,d1,a2,b2,c2,d2,e,f) %FEEDBACK Feedback connection of two systems. % u-->O-->[System1]---+--->y % | | %
www.eeworm.com/read/160618/10514273

m p_y.m

function pc3inte=P_y(interval,len); % 该函数对区间进行裁减即Py投影,返回裁剪后的区间信号 if sign(interval(1))==sign(interval(len)) interval=interval.*(sign(interval)==sign(interval(1))); inte=interp1([1,len],[i
www.eeworm.com/read/160361/10538978

m integer.m

function y=integer(x,k) %Generate y=integer x %------------------------------------ %y=integer (x,k) % y=(x-mod(x,k))/k; if (sign(x)==-1)&(mod(x,k)~=0) y=y+1 end
www.eeworm.com/read/423520/10554472

cs manualsign.aspx.cs

using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using
www.eeworm.com/read/159770/10618641

c 递归车厢.c

/**********递归题改为非递归题实例 车厢********/ #include #define MAX 4 int stack[MAX],p=-1; struct { int num; int sign; }train[MAX]; void sub() { int inc; if(p==MAX-
www.eeworm.com/read/159696/10621923

cpp head.cpp

#include "node.cpp" #include node cacl(node &x,node &y, node &s) { node tmp; switch(s.sign) { case '+': tmp.Fr=x.Fr+y.Fr; break; case '-':
www.eeworm.com/read/159696/10621960

cpp node.cpp

#include "Fraction.cpp" class node //节点node:s=0时存放分数,s=1时存放运算符 { public: bool s; Fraction Fr; char sign; node():
www.eeworm.com/read/351112/10679466

c fcvt.c

/* fcvt.c Floating point to string conversion routines Copyright (C) 2002 Michael Ringgaard. All rights reserved. Redistribution and use in source and binary forms, with or without modif