Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.476.218 Times

Integer software
Filter: All | Freeware | Demo
 

Integer

< 1 2 3 4 5 > 
Added: March 23, 2013 | Visits: 223

Recursive Integer Guessing Game A recursive algorithm that queries an objective function to guess an unknown integer.An integer guessing 'game' for afunction `isleq', that returns true forall values less than or equal to amystery number.Syntax: z=guessgame(isleq,n,k)In tertiary function notation:g(n,k) = | k==0 :: isleq(n) ? n... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Recursive Integer Guessing Game Download

Added: June 18, 2013 | Visits: 321

Convert decimal integer to arbitrary base DECIMAL_CONVERT generates a vector of coefficients representing a base 10 integer in a chosen base.DECIMAL_CONVERT(D,B) returns the representation of decimal integer, D, as a vector of coefficients such that:D = xn*B^n + ... + x2*B^2 + x1*B^1 + x0*B^0where B is the chosen base.See also polyval,... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Convert decimal integer to arbitrary base Download

Added: June 12, 2013 | Visits: 489

Vector Addition with Integer Components This simulation offers beginning students practice in two-dimensional vector addition. It is relatively simple, as the x and y components of each vector are integers. Given the magnitude and direction of two vectors, students must determine the x and y components, the length of each, and the... Platforms: Mac

License: Freeware Size: 1.35 MB Download (41): Vector Addition with Integer Components Download

Added: May 05, 2010 | Visits: 1.173

Set::IntSpan::Fast Set::IntSpan::Fast is a Perl module for fast handling of sets containing integer spans. SYNOPSIS use Set::IntSpan::Fast; my $set = Set::IntSpan::Fast->new(); $set->add(1, 3, 5, 7, 9); $set->add_range(100, 1_000_000); print $set->as_string(), "n"; # prints 1,3,5,7,9,100-1000000 The... Platforms: *nix

License: Freeware Size: 102.4 KB Download (104): Set::IntSpan::Fast Download

Added: June 07, 2010 | Visits: 704

Audio::TagLib::ID3v2::SynchData Audio::TagLib::ID3v2::SynchData is a Perl module with a few functions for ID3v2 synch safe integer conversion. SYNOPSIS use Audio::TagLib::ID3v2::SynchData; print Audio::TagLib::ID3v2::SynchData->toUInt( Audio::TagLib::ByteVector->new("11")), "n"; # got 6321 print... Platforms: *nix

License: Freeware Size: 1.4 MB Download (94): Audio::TagLib::ID3v2::SynchData Download

Added: August 18, 2010 | Visits: 1.017

Text::Roman Text::Roman is a Perl module that converts roman algarism in integer numbers and the contrary, recognize algarisms. SYNOPSIS use Text::Roman; print roman(123); Text::Roman::roman() is a very simple algarism converter. It converts a single integer (in arabic algarisms) at a time to its... Platforms: *nix

License: Freeware Size: 3.07 KB Download (108): Text::Roman Download

Added: March 12, 2010 | Visits: 791

XNum XNum project is a integer arithmetic library written in C++. The difference between XNum and other libraries such as GMP is the the former tries to imitate the practical method that humans use to do the arithmetic themselves. xnum implements the four basic operations (+, -, *, /) using the... Platforms: *nix

License: Freeware Size: 17.41 KB Download (92): XNum Download

Added: March 18, 2010 | Visits: 904

SigBrowser SigBrowser is a small tool to display large signals (up to 2 GB filesize / 1-6 channels / 16 bit integer). SigBrowser allows you to smoothly browse in a large signal. It can load 16 bit signed integer data with up to 6 interlaced channels. Unfortunately theres no large-file support, so the... Platforms: *nix

License: Freeware Size: 122.88 KB Download (99): SigBrowser Download

Released: November 27, 2012  |  Added: November 27, 2012 | Visits: 396

YAFU YAFU or Yet Another Factoring Utility is an interactive Command Line instrument for integer factorization. YAFU has a general purpose function, factor, which tries to optimally reduce a number to its factors using a combination of all of the implemented methods. This method measures the elapsed... Platforms: Windows

License: Freeware Size: 4.7 MB Download (514): YAFU Download

Released: June 10, 2012  |  Added: June 10, 2012 | Visits: 318

QTHextool QTHextool is a small, simple, easy to use application specially designed to offer you an integer calculator tool. This software uses a simple Stack RPN like user-style. So, if you were looking for an integer calculator, then take QTHextool for a spin and check out its capabilities. Platforms: Windows

License: Freeware Download (414): QTHextool Download

Added: May 10, 2013 | Visits: 440

Format integer as binary string This script converts integers to binary strings with no leading zeros. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (58): Format integer as binary string Download

Added: May 10, 2013 | Visits: 839

SimplexInPHP Simplex-in-PHP are PHP scripts that solve small linear programming and integer linear programming problems executing the simplex method step by step, printing the tableau and drawing the graphical analysis.Useful for students in Operational Research. Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (120): SimplexInPHP Download

Added: September 16, 2013 | Visits: 383

Distortionless Data Hiding Based on Integer Wavelet Transform The code implements the following paper:Guorong Xuan, Jiang Zhu, Jidong Chen, Shi Y.Q., Zhicheng Ni, Wei Su, "Distortionless data hiding based on integer wavelet transform" IET Electronics Letters, Volume: 38, Issue 25, page 1646- 1648, December 2002. (ISSN: 0013-5194)The watermark embedding and... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 993.28 KB Download (43): Distortionless Data Hiding Based on Integer Wavelet Transform Download

Added: July 16, 2013 | Visits: 296

True Random Integer Generator The function TRUERAND returns truly random integers using random.org's Random Integer Generator. According to random.org, the numbers are generated based on atmospheric noise and skew-corrected to generate uniform numbers. The generated numbers have been shown to pass the NIST tests for RNGs.The... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): True Random Integer Generator Download

Added: September 03, 2013 | Visits: 637

Minimum Perfect Matching Tool Function to solve the Minimum Perfect Matching on non-biparite graphs problem using Integer linear programming.Returns vector of matched indices and cost of the match. Requires symmetric adjacent matrix of even rank. function [ indices, cost ] = min_perfect_matching( G )Function _requires_... Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Minimum Perfect Matching Tool Download

Added: May 13, 2013 | Visits: 291

num2abc NUM2ABC(X), where X is an integer, returns a string corresponding to the column label commonly employed by spreadsheet programs, such as MicrosoftExcel. Example: x = 45; num2abc(x); ans = AS Platforms: Matlab

License: Freeware Size: 10 KB Download (42): num2abc Download

Added: July 30, 2013 | Visits: 440

truncation any floating point number is separated into two parts i) integer ii)floating pointfor ex if x=-12.93 the program gives -12 and .93 as the two outputsformat:[p,q]=truncate(x);where x is a floating point number Platforms: Matlab

License: Freeware Size: 10 KB Download (46): truncation Download

Added: July 26, 2013 | Visits: 337

Restricted Integer Composition This is a Matlab implementation of a unique algorithm by J. D. Opdyke with very good properties for solving the Integer Composition problem of finding all permutations in the additive partitioning of integers. It also accepts lower and upper bounds for the number of sum terms as well as lower and... Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Restricted Integer Composition Download

Added: May 15, 2013 | Visits: 429

Rice Coder Its a simple rice coder, requires input integer and the bits size of the integer along with the K value! Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (42): Rice Coder Download

Added: September 06, 2013 | Visits: 395

Lucas.m Given a nonnegative integer n, return the nth Lucas number. Return an error message if the argument is not an integer. Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Lucas.m Download

< 1 2 3 4 5 >