代码搜索:Numeric

找到约 7,754 项符合「Numeric」的源代码

代码结果 7,754
www.eeworm.com/read/371680/9542109

m sing_numeric.m

function e=sing_numeric(ignore) %de functie bepaalt de index in de h %dummy routine for i=1:5 e(1,i)=2+i; end
www.eeworm.com/read/357852/10200142

cc stl-numeric.cc

// Filename: STL-numeric.cc #include #include using namespace std; int main() { double v1[3] = {1.0, 2.5, 4.6}, v2[3] = {1.0, 2.0, -3.5}; double sum, i
www.eeworm.com/read/162272/10320964

h stl_numeric.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without
www.eeworm.com/read/399904/7827030

h stl_numeric.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/197653/7982602

h stl_numeric.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/245849/12777883

m check_numeric.m

function [var,ier,handle]=check_numeric(str,var_name,varargin) % Check if string represents numeric variables and satisfies specified constraints % Written by: E. R.: August 21, 2004 % Last updated: D
www.eeworm.com/read/142806/12917696

h stl_numeric.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/138936/13200779

h stl_numeric.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/137695/13304592

h stl_numeric.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/136916/13354347

js numeric_calculate.js

function Fraction(numerator,denominator) { this.N = numerator; this.D = denominator; } function F_Add(Fraction1,Fraction2) { var c = new Fraction(0,1); c.N = Fraction1.N*Fraction2.D+Fract