代码搜索:converting
找到约 1,282 项符合「converting」的源代码
代码结果 1,282
www.eeworm.com/read/277457/10638031
cpp mod.cpp
#include
#include
using namespace std;
int main()
{
int value = 32, temp = value;
char characters[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8',
'9', 'A'
www.eeworm.com/read/419962/10826288
sh l2r.sh
#!/bin/sh
echo Converting left tux images to right tux images...
for i in 0 1 2 3 4 5 6 7
do
echo $i
bmptoppm tux/l${i}.bmp | pnmflip -lr | ppmtobmp > tux/r${i}.bmp
done
www.eeworm.com/read/271450/10993711
cpp dequeconversion.cpp
//: C20:DequeConversion.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Reading into a Dequ
www.eeworm.com/read/468608/6985856
rpt ad.map.rpt
Analysis & Synthesis report for AD
Mon Apr 27 14:15:00 2009
Version 4.2 Build 157 12/07/2004 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Noti
www.eeworm.com/read/443686/7628524
cpp dequeconversion.cpp
//: C04:DequeConversion.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Reading into a Deque, co
www.eeworm.com/read/442608/7648863
m~ g2db.m~
function db=g2db(gain)
% G2DB Converts from ratio to decibels
%
% db=gb2db(gain)
%
% INPUTS
% gain = linear ratio [1]
%
% OUTPUTS
% db = Ratio in decibels (logarithmic) [dB]
%
% AIM
www.eeworm.com/read/442608/7648883
m g2db.m
function db=g2db(gain)
% G2DB Converts from ratio to decibels
%
% db=gb2db(gain)
%
% INPUTS
% gain = linear ratio [1]
%
% OUTPUTS
% db = Ratio in decibels (logarithmic) [dB]
%
% AIM
www.eeworm.com/read/442608/7648885
m~ db2g.m~
function gain=db2g(db)
% DB2G Converts from decibels to ratio
%
% gain=db2g(db)
%
% INPUTS
% db = Ratio in decibels (logarithmic) [dB]
%
% OUTPUTS
% gain = linear ratio [1]
%
% AIM: