代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/102471/15780249
vhd sdrm.vhd
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_STD.all;
-- synopsys translate_off
library UNISIM;
use UNISIM.vcomponents.all;
-- synopsys translate_on
entity sdrm is
--generic (DATA_MSB
www.eeworm.com/read/292180/8369527
vhd fir.vhd
LIBRARY ieee;
USE IEEE.std_logic_1164.all;
USE IEEE.numeric_std.ALL;
entity FIR is
port(
clock : in std_logic;
reset : in std_logic;
data_in : in signed(11 downto 0);
data_out : out
www.eeworm.com/read/291235/8433250
cpp bessj.cpp
#include
#include
#include "nr.h"
using namespace std;
DP NR::bessj(const int n, const DP x)
{
const DP ACC=160.0;
const int IEXP=numeric_limits::max_exponent/2;
bool
www.eeworm.com/read/389810/8498360
cpp ex288_oci7.cpp
#include
using namespace std;
#include
#define OTL_ORA7 // Compile OTL 4.0/OCI7
#define OTL_STRICT_NUMERIC_TYPE_CHECK_ON_SELECT
#include // include the OTL 4.0
www.eeworm.com/read/389810/8499019
cpp ex580_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC
//#define OTL_ODBC_UNIX // Compile OTL 4.0/ODBC
#define OTL_STRICT_NUMERIC_TYPE_CHECK_ON_SELECT
#include // inc
www.eeworm.com/read/387009/8712127
h quasinewton.h
template
void dfpmin(VecDoub_IO &p, const Doub gtol, Int &iter, Doub &fret, T &funcd)
{
const Int ITMAX=200;
const Doub EPS=numeric_limits::epsilon();
const Doub TOLX=4*EPS,STP
www.eeworm.com/read/387009/8712266
h svd.h
struct SVD {
Int m,n;
MatDoub u,v;
VecDoub w;
Doub eps, tsh;
SVD(MatDoub_I &a) : m(a.nrows()), n(a.ncols()), u(a), v(n,n), w(n) {
eps = numeric_limits::epsilon();
decompose();
www.eeworm.com/read/426147/10283277
cpp main.cpp
#include
#include
int add(int x, int y){
return x + y;
}
int mul(int x, int y){
return x * y;
}
int main(void){
using namespace std;
int iArray1[3]={2, 5, 4};
www.eeworm.com/read/161948/10355466
vhd testhehe.vhd
-- simulation model.
--
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.numeric_std.ALL;
ENTITY testleijia1 IS
END testleijia1;
ARCHITECTURE behavior OF testleijia1 IS
COMPONENT leijia1
po