代码搜索:decimal
找到约 6,613 项符合「decimal」的源代码
代码结果 6,613
www.eeworm.com/read/173155/5376179
m eight2bin.m
function y = eight2bin(x)
% eight2bin
%
% Converts eight bit data (0-255 decimal) to a binary form for processing.
y = zeros(1,8);
k = 0;
while x > 0
y(8-k) = rem(x,2);
k = k+1;
x = f
www.eeworm.com/read/173155/5376247
m eight2bin.m
function y = eight2bin(x)
% eight2bin
%
% Converts eight bit data (0-255 decimal) to a binary form for processing.
y = zeros(1,8);
k = 0;
while x > 0
y(8-k) = rem(x,2);
k = k+1;
x = f
www.eeworm.com/read/270429/4238135
m eight2bin.m
function y = eight2bin(x)
% eight2bin
%
% Converts eight bit data (0-255 decimal) to a binary form for processing.
y = zeros(1,8);
k = 0;
while x > 0
y(8-k) = rem(x,2);
k = k+1;
x = f
www.eeworm.com/read/270429/4238204
m eight2bin.m
function y = eight2bin(x)
% eight2bin
%
% Converts eight bit data (0-255 decimal) to a binary form for processing.
y = zeros(1,8);
k = 0;
while x > 0
y(8-k) = rem(x,2);
k = k+1;
x = f
www.eeworm.com/read/302590/13831622
txt sql实验要求.txt
一.定义下列表
1. 书book(书号, 类别, 书名,出版社,年份,作者,价格,总藏书量,库存)
各属性的类型如下:
bno char(8)
category char(10)
title varchar(40)
press char(30)
year int
author char(20)
price decimal(7,2)
www.eeworm.com/read/5587/63196
cfg b2260000plu250.cfg
[Config]
Version=451000; SafeCast 2.51.000 CdsApi 4.51.000
licenceNo=0xB2260000; (decimal 2988834816)
B2260000(0)=BCEF87B5B11E7821060040DA875FEE37DBD74902
B2260000(1)=0400330000006B48BC7C11603D48E
www.eeworm.com/read/248077/4471077
m p6_4.m
% P6_4.M Compute exp(1/3) to at least 5 decimal places
%
clear
y=(exp(1))^(1/3); % Exact result
%
% Compute the terms x^(n)/n!
Exp(1)=1;
err(1)=Exp(1)-y;
for n=1:10
Exp(n+1)=Exp(n) + 1./((3^(n))*pro
www.eeworm.com/read/173141/5379888
out i18nimportexport.out
ij> drop table tab1;
ERROR 42Y55: 'DROP TABLE' cannot be performed on 'TAB1' because it does not exist.
ij> create table tab1( c1 decimal(5,3), c2 date, c3 char(20) );
0 rows inserted/updated/deleted