Main > Free Download Search >

Free calculate software for linux

calculate

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 389
Date Calculator 0.1

Date Calculator 0.1


Date Calculator is a date calculator application written in pyqt. more>>
Date Calculator is a date calculator application written in pyqt. You can add or subtract days to a date, or calculate the number of days between two dates.

You can also choose to run your calculations using only working days and/or calculate inclusive of the start/end dates. There is a comprehensive gui for setting holiday dates.

Holidays can be fixed annual dates, variable dates, such as "the 1st Monday in June" or "the closest Monday to 22 February". This utility could be useful for people who need to be able to calculate time critical deadlines, such as lawyers.

Date Calculator application is also available as a superkaramba theme. You can download both from the download link.

<<less
Download (0.19MB)
Added: 2006-04-03 License: GPL (GNU General Public License) Price:
1307 downloads
Subnet Mask Calculator 0.2

Subnet Mask Calculator 0.2


Subnet Mask Calculator is a simple PHP script that will return the subnet mask and slash-notated mask for a given number of host more>>
Subnet Mask Calculator is a simple PHP script that will return the subnet mask and slash-notated mask for a given number of hosts.
Subnet Mask Calculators purpose of this program is to help people calculate subnets for networks based on the number of hosts (computers).
Installation:
Step 1 - copy subnetmaskcalculator.php into a directory accessible from your web server (/var/www/html/ for example).
Step 2 - Visit http://yourhost.domain.tld/subnetmaskcalculator.php
Step 3 - Enjoy
If you have any trouble, support can be obtained by posts to http://www.vle.org/vle
Enhancements:
- This release changes URL GET from HTTP_GET_VARS to _GET.
<<less
Download (0.030MB)
Added: 2006-08-05 License: GPL (GNU General Public License) Price:
1221 downloads
Veterinary Calculator 0.9.1 Beta

Veterinary Calculator 0.9.1 Beta


Veterinary Calculator was designed specifically for veterinary clinics. more>>
Veterinary Calculator was designed specifically for veterinary clinics, the purpose behind this application is to allow veterinarians to do the conversions necessary for their job quicker.
The calculator includes features to allow you to convert from various common units like pounds and kilograms, as well as convert weight to body surface area for cats and dogs. Ultimately this application will include everything necessary to calculate drug dosages for any animal, however for now its features are primarily limited to cats and dogs.
This calculator is now and always will be free. The reason for the decision to make this application free is to improve the welfare of all animals by reducing the costs associated with keeping them healthy.
Enhancements:
- This is a minor release to fix some text to make things easier to understand, and to fix building on Linux with nant.
- This is also likely the last GPL release; the next release will be LGPL or perhaps even BSD licensed.
<<less
Download (MB)
Added: 2006-12-12 License: GPL (GNU General Public License) Price:
1047 downloads
Command line Calculator 1.01

Command line Calculator 1.01


Command Line calculator CLC is the calculator that can calculate direct at the linux console. more>>
Command Line calculator "CLC" is the calculator that can calculate direct at the Linux console.

Extract the CLCC file to /usr/bin you might need to login as root or equvalent account, to be able to access it whenever you need it.

Then just write CLCC 67+89 and the answer will be presented to you directly.

CLCC calculates from left to right with no exceptions. CLC also have some extra parameters that is sent to CLC using backslash parameters.

CLCC r2 10/3 this will round the result to 2 decimals you can use 1 to 9 if you want to round the sum of.

the r parameter can also be combined with the other parameters but it must be added first like this

CLCC r3c 10/3 - to get 10 diveded with 3 rounded down to 3 decimals.

CLCC is tested with Ubuntu 6.10 and Puppy OS 2.13 but should work with any Linux version in console mode.

The program is developed using Hotbasic for Linux and is Freeware, hope you find it useful, send and email if you have any questions.

Hotbasic is a basic language that compiles into assembler direct, no interpeter that slows down the code, just pure assembler.

So if you want assembler in Linux but doesnt want to code in nasm, HotBasic is the compiler for you.
<<less
Download (0.006MB)
Added: 2007-02-16 License: Freeware Price:
985 downloads
Calorie Burning Calculator 2.1

Calorie Burning Calculator 2.1


Calorie Burning Calculator can calculate how many calories they require a day to maintain their body weight. more>>
Calorie Burning Calculator project is a free, nicely-formatted online calculator to help your web site visitors calculate how many calories they require a day to maintain their body weight, or basal metabolic rate (BMR).
Main features:
- Calorie Burning Calculator is easy to install, just unzip, upload and youre done!
- Simple interface makes it easy for visitors to use the calculator, and will encourage them to come back to use it again and again!
- Adjust the Calorie Burning Calculator to fit the look and feel of your own site.
- A great way to add some extra content to your health related web site.
- Calorie Burning Calculator is completely free!
<<less
Download (0.025MB)
Added: 2006-03-17 License: Freeware Price:
1317 downloads
bpmcalc 0.2

bpmcalc 0.2


bpmcalc is an Amarok script that calculates BPM on song change and update Amaroks database. more>>
bpmcalc is an Amarok script that calculates BPM on song change and update Amaroks database.

This is my first amaroK script which calculate the BPM of the currently playing file. I wrote it after the recent patch which add a BPM field in the playlist. It isnt really useful, but I think its cool; plus it can make conversations: "Hey! did you know tha this tune is 130BPM!..."

Dont forget to add the BPM column to the playlist (right-click on the column titles->show columns->BPM)

Note the detection is sometimes bad for some music styles or when the bass drum isnt loud enough. However, in those cases the BPM is often a multiple of what has been detected. If you dont agree with what is detected, you can right click the playlist -> bpm -> check manually and press spacebar.

Feel free to modify it or to mail me your
comments/requests/favorite tune!

<<less
Download (0.011MB)
Added: 2007-03-18 License: GPL (GNU General Public License) Price:
953 downloads
Scalar::Defer 0.07

Scalar::Defer 0.07


Scalar::Defer is a Perl module to calculate values on demand. more>>
Scalar::Defer is a Perl module to calculate values on demand.

SYNOPSIS

use Scalar::Defer; # exports defer and lazy

my ($x, $y);
my $dv = defer { ++$x }; # a deferred value (not memoized)
my $lv = lazy { ++$y }; # a lazy value (memoized)

print "$dv $dv $dv"; # 1 2 3
print "$lv $lv $lv"; # 1 1 1

my $forced = force $dv; # force a normal value out of $dv

print "$forced $forced $forced"; # 4 4 4

This module exports two functions, defer and lazy, for building values that are evaluated on demand. It also exports a force function to force evaluation of a deferred value.

defer {...}

Takes a block or a code reference, and returns a deferred value. Each time that value is demanded, the block is evaluated again to yield a fresh result.

lazy {...}

Like defer, except the value is computed at most once. Subsequent evaluation will simply use the cached result.

force $value

Force evaluation of a deferred value to return a normal value. If $value was already normal value, then force simply returns it.

NOTES

Deferred values are not considered objects (ref on them returns 0), although you can still call methods on them, in which case the invocant is always the forced value.

Unlike the tie-based Data::Lazy, this module operates on values, not variables. Therefore, assigning into $dv and $lv above will simply replace the value, instead of triggering a STORE method call.

Also, thanks to the overload-based implementation, this module is about 2x faster than Data::Lazy.

<<less
Download (0.025MB)
Added: 2006-10-18 License: MIT/X Consortium License Price:
1101 downloads
Numerology Calculator for Linux 1.0

Numerology Calculator for Linux 1.0


Type in a name,and the program will display the numeric equivalent. more>> Numero is a program to assist numerologers to calculate the numerical equivalents of names in the Latin alphabet. Numero is free software.
You can download the Linux version. Numero is very easy to use. Type in a name, and the program will display the numeric equivalent for each letter. You can view the results according to the Chaldean or Pythagorean system with one click of the mouse.
<<less
Download (830KB)
Added: 2009-04-21 License: Freeware Price:
190 downloads
RateXCalc 0.1

RateXCalc 0.1


RateXCalc is a simple tool for audio/video streams and media size/length cross calculation. more>>
RateXCalc is a simple tool for audio/video streams and media size/length cross calculation.
With RateXCalc you can:
- Evaluate the maximum video rate for a perfect fit in different media
- Calculate the final production size for a given movie length and a/v rates
- Jog the video rate with a slider and see the subsequent fit for a given media type
Examples:
1. I have to know the best audio or video bitrate for a given movie (length). Ill lock the audio or the video variable and let the program calculates these values selecting the amount of CD or other media that I intend to use.
2. I want to lock the media variable: changing the other variables the program will let me know how many CD I must use and the percentile fit of the CD or the last one (if more than one).
So I can define the time, choose a preferred audio bitrate and play with the video bitrate slider to get an optimized distribution of data on the x CDs.
<<less
Download (0.022MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
1072 downloads
Amortization Schedule Calculator 1.0

Amortization Schedule Calculator 1.0


Amortization Schedule Calculator lets you estimate your monthly loan repayments. more>>
Amortization Schedule Calculator also known as an amortization schedule calculator - lets you estimate your monthly loan repayments.

It also determines out how much of your repayments will go towards the principal and how much will go towards interest.

Simply input your loan amount, interest rate, loan term and repayment start date then click "Calculate".

This loan amortization calculator should only be used to estimate your repayments since it doesnt include taxes or insurance.

<<less
Download (0.10MB)
Added: 2005-12-02 License: Freeware Price:
1427 downloads
Debt Payment Comparison Calculator 1.18

Debt Payment Comparison Calculator 1.18


Debt Payment Comparison Calculator is a free, flexible tool for your Web site that does more than just calculate monthly payment more>>
Debt Payment Comparison Calculator project is a free, flexible tool for your Web site that does more than just calculate monthly payments.
In addition to what typical Web calculators do, which is grab the principle, interest rate, and the years to pay it off to generate your monthly payment, this calculator can tell you how long it would take you to pay off a debt if you increased or decreased the payment amount.
Each time the user uses the calculator, it saves the information so that the user can compare different payment scenarios. At any time, the user can clear the data and start over. They can also color-group different scenarios for easy visual reference.
Main features:
- Stores calculations in a session variable, so users can compare different payment scenarios, side by side without the use of a database.
- Ability to color-code the scenarios by clicking on them, making it easy to visually sort the results
- Works fine without Javascript enabled
- Simple code to work with, easy to adjust to specific needs
- Styles and scripts are already in external files, making the web page search engine ready out of the box!
<<less
Download (0.025MB)
Added: 2005-12-15 License: Freeware Price:
1410 downloads
Score Rated 0.3

Score Rated 0.3


Score Rated is a rated scoring script that uses the rating as a factor in the scoring process. more>>
Score Rated is a rated scoring script which uses the rating as a factor in the scoring process. Higher ratings leds to higher score. The rating is factored in each play.

I make no promises but the script hasnt messed up my system yet.

Usage:

You must use ratings for this script to have any point. Run the script, and it will be used to calculate scores for your tracks from then on. The script can be tweek by editing the file.

Known flaws:

Script reads rating when the song starts playing. Changes made after that is not considered. To make sure a new rating is used you could stop and restart the script or pause and play the song.

I will be looking in this for a future version. Suggestions are welcome.

<<less
Download (0.030MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
966 downloads
Low Resolution Modeline Calculator 0.9.2

Low Resolution Modeline Calculator 0.9.2


Low Resolution Modeline Calculator is a modeline calculator for legacy CRT displays. more>>
Low Resolution Modeline Calculator is a modeline calculator for legacy CRT displays, including TVs, arcade monitors, and VGA monitors.
Low Resolution Modeline Calculator can also be used to calculate low resolution modelines for modern multisync PC monitors.
As its name implies, it is not designed for calculating large resolutions, resolutions that operate over 65kHz.
Options:
-v, --vsync
Calculate the nearest mode in vertical synchronization.
-b, --bestscan
Calculate the nearest best scan mode.
-i, --interlace
Include support for interlaced calculations. Interlaced modes are not supported by many video cards. You should only enable this option if you know your video card supports them.
-d, --doublescan
Include support for doublescanned calculations. Doublescanned modes are not supported by many video cards. You should only enable this option if you know your video card supports them.
-n, --nostretch
Do not stretch modes that are out of range for your monitor. You should use this option if you know that your application does not support integer stretching.
-y, --ystretch
Assume fractional stretching of the y-resolution. You should use this option if you know that your application supports fractional stretching of the y-resolution and you want to stretch an underscanned mode so that it fills the entire screen.
-l, --lowpclock
Many video cards do not reliably support pixel clocks lower than 8mHz. If you know that your video card and its driver support pixel clocks lower than 8mHz, then you should use this option.
-h, --highpclock
Most X11 video card drivers do not support pixel clocks lower than 12mHz. In some cases your video card may not support pixel clocks lower than 12mHz either (rare). If you know that your video card (or your video card driver) does not support pixel clocks lower than 12mHz, then you should use this option.
-3x4
Stretch the horizontal resolution so that the mode has a 3:4 aspect ratio. You can use this option to correctly display vertical resolutions on a horizontal monitor.
-x, --X11R6
Print modeline in X11 format (default).
-f, --fb
Print modeline in fbset format.
-a, --advmame
Print modeline in AdvanceMAME format.
-s, --SDL
Print modeline in X11 format to stdout and print AdvanceMAME X11 configuration to stderr.
-p, --powerstrip
Print modeline in PowerStrip format.
-pal
Calculate modelines for a PAL Television (15.625kHz).
-ntsc
Calculate modelines for a NTSC Television (15.73426kHz).
-cga
Calculate modelines for a standard resolution arcade monitor (15.7500kHz).
-ega
Calculate modelines for a medium resolution arcade monitor (24.960kHz).
-vga
Calculate modelines for a standard VGA monitor (31.500kHz).
-d9200
Calculate modelines for a Wells-Gardner 9200 arcade monitor (15kHz, 25kHz, 31kHz).
-multi
Calculate modelines for a Multisync PC monitor (default)
Enhancements:
- The --reference option works correctly.
- The DOS version compiles with libxml.
<<less
Download (0.30MB)
Added: 2006-01-01 License: GPL (GNU General Public License) Price:
1395 downloads
pyFretCalc 0.0.2

pyFretCalc 0.0.2


pyFretCalc is a handy little fret spacing calculator for luthiers (Guitar makers). more>>
pyFretCalc is a handy little fret spacing calculator for luthiers (Guitar makers). Simply enter the scale length you want and how many frets, then click on calculate.
To install it, first you have to have the following software installed.
Python http://www.python.org
QT 3 http://www.trolltech.com
PyQt http://www.riverbankcomputing.co.uk
For Linux and other *nixs just untar pyFretCalc-0.0.2.tar.gz to any directory (like $HOME/bin) and run main.py. Future releases will use some sort of packaging.
Windows/OSx users: Follow the same instructions and let me know how it works.
Enhancements:
- Changed to QT3 for the gui
<<less
Download (0.025MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1187 downloads
Matrex 1.1

Matrex 1.1


Matrex is a graphical tool to show, organize and calculate big amounts of data. more>>
Matrex is a graphical tool to show, organize and calculate big amounts of data.

Matrex is the perfect tool for mathematical models and for other statistical, engineering, physical, and generally scientific calculations.

Matrex is based on matrices, which are meant as square grids of numbers, texts, dates or booleans.

Matrex matrices can be real matrices, vectors or simple values.

Matrex uses also:

- functions to transform matrices to other matrices.
- presentations to show multiple matrices together in a spreadheet-like way.
- charts to show matrices graphically.

Advantages: simplicity, performance, multithreading, readability, easy projects sharing; and the feeling you have everything under control.

Matrex uses the following products:

- SWT for the graphical user interface
- JFreeChart for the 2D charts
- FreeHep for the 3D charts
- Jython as embedded scripting language
- Apache Commons Math to calculate pure matrices functions and statistical functions
- IzPack to install Matrex.

<<less
Download (9.4MB)
Added: 2007-04-15 License: GPL (GNU General Public License) Price:
925 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5