代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/181830/9235744
m triu.m
function P = triu(P,varargin)
% TRIU -- set lower triangle in matrix polynomial to zero
%
% P = triu(P)
% P = triu(P,k)
%
% Set all values below the kth diagonal to zero. This ex
www.eeworm.com/read/376037/9335288
f90 secant.f90
module NUMERICAL
implicit none
real, parameter :: zero=0.00001 ! 小于zero的值会被当成0
contains
! 割线法的函数
real function secant(a,b,f)
implicit none
real :: a,b ! 起始的两个猜值
real :: c ! 新的解
www.eeworm.com/read/179388/9359425
asm 3100_2interface.asm
;==================================================================================================
;
; Include Definitions
;
;=========================================================
www.eeworm.com/read/372592/9500943
txt vander.txt
Sub VANDER(X(), W(), Q(), N)
NMAX = 100
ZERO = 0#
ONE = 1#
Dim C(100)
If N = 1 Then
W(1) = Q(1)
Else
For I = 1 To N
C(I) = ZERO
Ne
www.eeworm.com/read/372507/9507270
cpp huffman.cpp
// Huffman tree
#include
#include "minheap.h"
#include "binary.h"
#include "huffman.h"
template
BinaryTree HuffmanTree(T a[], int n)
{// Generate Huffman tree wi
www.eeworm.com/read/176119/9515599
f90 vander.f90
SUBROUTINE vander(x,w,q,n)
PARAMETER (nmax=100,zero=0.0,one=1.0)
REAL x(n),w(n),q(n),c(nmax)
REAL xx,t,b,s
INTEGER i,n,j,k,k1
if(n==1) then
w(1)=q(1)
else
do i=1,n
c(i)=zero
www.eeworm.com/read/176119/9515838
f90 pinvs.f90
SUBROUTINE pinvs(ie1,ie2,je1,jsf,jc1,k,c,nci,ncj,nck,&
s,nsi,nsj)
PARAMETER (zero=0.,one=1.,nmax=10)
DIMENSION c(nci,ncj,nck),s(nsi,nsj),pscl(nmax),&
indxr(nmax)
INTEGER ie1
www.eeworm.com/read/371987/9526314
java program.java
import java.util.*;
public class Program {
public static Hashtable state = new Hashtable();
public static void main(String args[]) {
try {
Declare d0 = new Declare("a");
D
www.eeworm.com/read/175135/9558315
cpp exceed.cpp
// exceed.cpp -- exceeding some integer limits
#include
#define ZERO 0 // makes ZERO symbol for 0 value
#include // defines INT_MAX as largest int value
int main()
{
www.eeworm.com/read/370863/9578722
cs memory.cs
using System;
using System.Runtime.InteropServices;
namespace SmartAnswerCall.处理类
{
public class Memory
{
public const uint LMEM_FIXED = 0;
public const uint LMEM_MODI