代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/480010/6674859
qmsg num_count.fit.qmsg
{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3 0 "*******************************************************************" 0 0}
{ "I
www.eeworm.com/read/480010/6674860
eqn num_count.map.eqn
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and any o
www.eeworm.com/read/480010/6674863
rpt num_count.tan.rpt
Timing Analyzer report for Num_Count
Sat Sep 08 21:27:11 2007
Version 6.0 Build 178 04/27/2006 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal No
www.eeworm.com/read/479621/6689363
m bool2num.m
function R = bool2num( B )
% bool2num - Convert Boolean number to integer
%
% R = bool2num ( B )
%
% bool2num ver. 1 Last update: 24 Feb 2007
% Copyright 2002-
www.eeworm.com/read/479621/6689365
m num2bool.m
function B = num2bool( R, n )
% num2bool - Convert Integer to Boolean number
%
% B = num2bool ( R, n )
%
% R - integer number to convert
% n - number of bits to use
% B - boolean number
%
% n
www.eeworm.com/read/476935/6743079
m bit2num.m
function [y] = bit2num(x)
y = 0; mul = 1;
for i=(length(x):-1:1)
y = y + mul*x(i);
mul = mul*2;
end
www.eeworm.com/read/408139/11404594
gif ed_list_num.gif
www.eeworm.com/read/405819/11456107
m ibm2num.m
function x=ibm2num(b)
% ibm2num : convert IBM 32 bit floating point format to doubles
% x=num2ibm(b)
% b is a matrix of uint32
% x is a corresponding matrix of doubles
%
%
% See also num2ibm
www.eeworm.com/read/405819/11456115
m num2ibm.m
function b=num2ibm(x)
% num2ibm : convert IEEE 754 doubles to IBM 32 bit floating point format
% b=num2ibm(x)
% x is a matrix of doubles
% b is a corresponding matrix of uint32
%
% The repres
www.eeworm.com/read/405704/11459247