代码搜索:Sign

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

代码结果 10,000
www.eeworm.com/read/101018/6261789

h mathglobal.h

/******************************************************************* * Advanced 3D Game Programming using DirectX 9.0 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
www.eeworm.com/read/395421/8177973

asp dir_del.asp

www.eeworm.com/read/173610/9647565

php 78.php

www.eeworm.com/read/102322/15786638

php 78.php

www.eeworm.com/read/390322/8471189

m jacrot.m

function J=jacrot(a,b,d) tau=(b-a)/2/d; t=sign(tau)/(abs(tau)+sqrt(1+tau^2)); c=1/sqrt(1+t^2); s=c*t; J=[c,s; -s,c];
www.eeworm.com/read/390322/8471250

m sturmcount.m

function count=sturmcount(A,x) n=size(A,1); p=[0,1,A(1,1)-x]; for k=2:n p=[p,(A(k,k)-x)*p(end)-A(k,k-1)^2*p(end-1)]; end count=sum(diff([1,sign(p(3:end))])~=0);
www.eeworm.com/read/287540/8683619

java mainframe.java

import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.*; public class MainFrame extends JFrame { MainPanel mainPanel; Thread t=new Thread(){ publ
www.eeworm.com/read/287357/8690369

c 5.c

#include void sign_pointer() { int a[5]={1,3,5,7,9},i,*p; for(i=0;i
www.eeworm.com/read/187342/8832334

txt maccyrillic.txt

#======================================================================= # File name: CYRILLIC.TXT # # Contents: Map (external version) from Mac OS Cyrillic # character set to
www.eeworm.com/read/187300/8834743

txt 列主元.txt

function [X,det]=myGauss(A) %列主元 sign=1; [n,m]=size(A); if n~=m-1 'error' break end for k=1:n-1 [l,m]=max(abs(A(k:n,k))); if A(k+m-1,k)==