代码搜索:Sign
找到约 10,000 项符合「Sign」的源代码
代码结果 10,000
www.eeworm.com/read/395688/8160192
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/395679/8161016
m rect.m
% rect.m
% 实现一个单相不控的全桥整流器
function[sys,xo]=rect(t,x,u,flag,R1,C,R)
% 由于不是离散系统,输出参数没有包括ts
% 此外需要用户输入3个新的参数
% 交流母线电阻R1,直流滤波电容C,负载电阻R
% 根据不控全桥整流电路的原理,列写微分方程
a1=-(1/R1+1/R)/C;
a2=-1/R/C;
b1=1
www.eeworm.com/read/295361/8168217
c krx50100.c
#include
int getch(void);
void ungetch(int);
/* getint: get next integer from input into *pn */
int getint(int *pn)
{
int c, sign, sawsign;
while (isspace(c = getch()))
www.eeworm.com/read/294886/8195956
m nndrwlin.m
function h = nndrwlin(x,y,w,c)
%NNDRWLIN Neural Network Design utility function.
% NNDRWLIN(X,Y,W,C)
% X - Vector of horizontal coordinates.
% Y - Vector of vertical coordinates.
% W - Wi
www.eeworm.com/read/394271/8238895
java communicate.java
package com;
import java.util.Random;
public class Communicate
{
//成员字段
private boolean sign1; //用来标记学校是否发出收费通知
private boolean sign2; //老爸是否已经寄钱
private boolean sign3; //老爸向学校确认是
www.eeworm.com/read/193159/8250698
cpp bigint.cpp
#include
#include
#include "BigInt.h"
#include "primer.h"
using namespace std;
//默认构造函数,成员数据清0
BigInt::BigInt()
{
for(int i=0 ;i
www.eeworm.com/read/393976/8252702
m vtb1_5.m
function VTB1_5(m,k,dtype,dcoef,dt,tott,x0,v0)
%VTB1_5 Damping Simulations.
% VTB1_5(m,k,dtype,dcoef,dt,tott,x0,v0) plots the free decay of
% single degree of freedom systems with different types of
www.eeworm.com/read/294077/8255062
m pwammap3.m
function fx=PWAMmap3(x,rParam)
%rParam=2.1...3 for chaos (see rParam=3)
%x0=0.4
%parameters
B=rParam;
D=1;
if abs(x)
www.eeworm.com/read/393250/8302366
txt 4.17.txt
Status Replace(SString& s, SString t, SString v)
/* 用串v替换串s中所有和串t匹配的子串。 */
/* 若有与t匹配的子串被替换,则返回TRUE;*/
/* 否则返回FALSE */
{
int sign,i,j,k,len,lent,lenv;
SString ans;
www.eeworm.com/read/392830/8324764
c find.c
#include
#define size 20
struct student
{int num;
char name[10];
int a[6];
float ave;
}stud[20],q;
void find(int a)
{FILE *fp1;
int i,j,g,c,d,top,bott,mid,flag=1,sign,loca,k=1;