Main > Free Download Search >

Free financial calculator software for linux

financial calculator

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 229
Poor mans Financial Calculator 1.1

Poor mans Financial Calculator 1.1


Poor mans Financial Calculator is a small financial and basic mathematical operations calculator applet. more>>
Poor mans Financial Calculator project is a small financial and basic mathematical operations calculator applet.
The calculator registers work like the mythical HP-12C financial calculator, even the "n" rounding behaviour. The yellow fields also serve as operands for the arithmetic operations; for such ops, the blue field will show the result.
BEGIN button: If enabled, means that the first payment is made at the beginning of the period (important only for financial operations that involve PMT register)
FPC button: if enabled, Fractionary part of the Period ("n") will also be calculated using Compound interest; if disabled, fractionary part will use simple (linear) interest, which gives slightly higher interest values.
Enhancements:
- This release translates the code and messages to English and changes the license to the LGPL.
<<less
Download (0.009MB)
Added: 2005-12-09 License: LGPL (GNU Lesser General Public License) Price:
1414 downloads
Sin/Cos calculator

Sin/Cos calculator


Sin/Cos calculator is a mathematical comand-line calculator. more>>
Sin/Cos calculator is a mathematical comand-line calculator.

I was chatting to this guy on IRC who was moaning about his homework. trying to write a program to do this in bash. I said youd be much better off doing it in C, and wrote this. Gave it to him the next day after theyd finished the chapter.

As it does both, theres two executables, it builds main() depending on preprocessor definition... more in the source file.

Compile with:

gcc -lm sin_rule.c -ansi -pedantic -DSINE_RULE -o sin-rule
./sin-rule
<<less
Download (0.004MB)
Added: 2007-03-05 License: BSD License Price:
971 downloads
FinerEdge Calculator 2.8

FinerEdge Calculator 2.8


FinerEdge Calculator project handles all types of loans, bonds, annuities and other investments. more>>
The FinerEdge Calculation Solution is a modern Java, ISO and XML standards-based, customizable financial amortization calculation system designed for financial institutions, financial software vendors, and application service providers. The FinerEdge Calculator is a single source financial calculation solution from the Web to the Desktop to the Mainframe.

FinerEdge Calculator project handles all types of loans, bonds, annuities and other investments using all of the proper calculation methods and terms for each of the different types of cash flows. In addition, new calculation methods and terms can visually be added to FinerEdge Calculator and immediately leveraged across your entire enterprise and web offerings, all without any programming! In turn, this enables the easy creation and servicing of custom, hybrid financial products that keep you ahead of the competition.

<<less
Download (2.3MB)
Added: 2007-04-02 License: Free To Use But Restricted Price:
939 downloads
BMI Calculator 1.1

BMI Calculator 1.1


BMI Calculator is a simple, easy-to-use BMI calculator. more>>
BMI Calculator is a simple, easy-to-use BMI calculator. It accepts input in both the English and Metric measuring systems.
BMI Calculator uses an HTML template that can be easily customized. The degree of health risk associated with every calculated BMI is also determined.
Enhancements:
- Fixed the script to work with register_globals = Off
- Stopped returning by reference results in interpret_bmi function
<<less
Download (0.009MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1425 downloads
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
A practical lambda-calculator 2.2

A practical lambda-calculator 2.2


A practical lambda-calculator is a Lambda-calculator with convenient commands and shortcuts. more>>
A practical lambda-calculator is a normal-order evaluator for the untyped lambda-calculus, extended with convenient commands and shortcuts to make programming in it more productive.

Shortcuts are distinguished constants that represent terms. Commands define new shortcuts, activate tracing of all reductions, compare terms modulo alpha-conversion, print all defined shortcuts and evaluation flags, etc.

Terms to evaluate and commands are entered at a read-eval-print-loop (REPL) "prompt" or "included" from a file by a special command. A Haskell branch is an embedding of the lambda calculator (as a domain-specific language) into Haskell. The calculator can be used interactively within Hugs or GHCi.

The present calculator implements what seems to be an efficient and elegant algorithm of normal order reductions. The algorithm is "more functional" than the traditionally used approach.

The algorithm seems identical to that employed by yacc sans one critical difference. The calculator also takes a more "functional" approach to the hygiene of beta-substitutions, which is achieved by coloring of identifiers where absolutely necessary. This approach is "more functional" because it avoids a global counter or the threading of the paint bucket through the whole the process. The integration of the calculator with Haskell lets us store terms in variables and easily and intuitively combine them.

The traditional recipe for normal-order reductions includes an unpleasant phrase "cook until done". The phrase makes it necessary to keep track of reduction attempts, and implies an ugly iterative algorithm. Were proposing what seems to be an efficient and elegant technique that can be implemented through intuitive re-writing rules.

Our calculator, like yacc, possesses a stack and works by doing a sequence of shift and reduce steps. The only significant difference from yacc is that the lambda-calculator "reparses" the result after the successful reduce step. The source and the target languages of our "parser" (lambda-calculator) are the same; therefore, the parser can indeed apply itself.

The parsing stack can be made implicit. In that case, the algorithm can be used for normalization of typed lambda-terms in Twelf.

The following examples show that lambda-calculus becomes a domain-specific language embedded into Haskell:

> c0 = f ^ x ^ x -- Church numeral 0
> succ = c ^ f ^ x ^ f # (c # f # x) -- Successor

> c1 = eval $ succ # c0 -- pre-evaluate other numerals
> c2 = eval $ succ # c1
> c3 = eval $ succ # c2
> c4 = eval $ succ # c3

It is indeed convenient to store terms in Haskell variables and pre-evaluate (i.e., normalize) them. They are indeed terms. We can always ask the interpreter to show the term. For example, show c4 yields (f. (x. f (f (f (f x))))).

let mul = a ^ b ^ f ^ a # (b # f) -- multiplication
eval $ mul # c1 ---> (b. b), the identity function
eval $ mul # c0 ---> (b. (f. (x. x))), which is "const 0"

These are algebraic results: multiplying any number by zero always gives zero. We can see now how lambda-calculus can be useful for theorem proving, even over universally-quantified formulas.

The calculator implements Dr. Fairbairns suggestion to limit the depth of printed terms. This makes it possible to evaluate and print some divergent terms (so-called tail-divergent terms):

Lambda_calc> let y_comb = f^((p^p#p) # (c ^ f#(c#c))) in eval $ y_comb#c
c (c (c (c (c (c (c (c (c (c (...))))))))))

It is amazing how well lambda-calculus and Haskell play together.
<<less
Download (0.021MB)
Added: 2005-04-01 License: Public Domain Price:
1672 downloads
FOX Calculator 2.1.0

FOX Calculator 2.1.0


FOX Calculator is a desktop calculator written in FOX. more>>
FOX Calculator is a desktop calculator written in FOX.
The FOX Calculator is a simple desktop calculator geared toward the programmer.
It supports not only a full complement scientific functions, but also common operations that programmers need, such as bitwise operations, bitwise shifting, and base-2 logarithm and exponents, and numeric conversion between hexadecimal, octal, binary, and decimal.
It implements correct operator precedences, and features a constant memory which permanently stores its value even if you exit the calculator and restart it later.
Main features:
- + Addition
- - Substraction
- * Multiplication
- / Floating point division
- AND Bit-wise logical and
- OR Bit-wise logical or
- XOR Bit-wise logical exclusive or
- NOT Bit-wise logical not
- SHL Bit-wise shift left
- SHR Bit-wise shift right
- SAR Bit-wise signed shift right (hit the "inv" button first)
- mod Integer modulo
- div Integer division (hit the "inv" button first
- sin Sine
- cos Cosine
- tan Tangent
- asin Inverse sine or arc sine (hit the "inv" button first)
- acos Inverse cosine
- atan Inverse tangent
- sinh Hyperbolic sine (hit the "hyp" button first)
- cosh Hyperbolic cosine
- tanh Hyperbolic tangent
- asinh Inverse hyperbolic sine (hit the "hyp" and "inv"buttons first)
- acosh Inverse hyperbolic cosine
- atanh Inverse hyperbolic tangent
- log Base 10 logarithm
- ln Natural logarithm
- 2log Base 2 logarithm
- x! Factorial
- nPr Permutations
- nCr Combinations
- sqrt Square root
- x^y X raised to the power y
- 1/x Reciprocal
- 10^x Base 10 exponentiation (hit the "inv" button first)
- e^x Exponentiation
- 2^x Base 2 exponentiation
- x^1/y X raised to the power 1/y
- x^2 X squared
<<less
Download (1.1MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1132 downloads
Bridge Calculator 1.3

Bridge Calculator 1.3


This is a free software written by Piotr Beling which solves problems in the Bridge card game. more>> <<less
Added: 2009-01-27 License: Freeware Price: FREE
1 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
KCalculator 1.1

KCalculator 1.1


KCalculator is a small and easy to use calculator for the KDE desktop. more>>
KCalculator is a small and easy to use calculator for the KDE desktop. I know, it aint better than the original KDE Calculator (KCalc) but Im still working on it.

Its made in Lazarus [FreePascal] on a GTK Widget set.

<<less
Download (2.2MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
860 downloads
GTK-Bitrate calculator 0.1

GTK-Bitrate calculator 0.1


GTK-Bitrate calculator package provides a GUI and a command line tool for DIVX encoding bitrate calculations. more>>
GTK-Bitrate calculator package provides a GUI and a command line tool for DIVX encoding bitrate calculations.

Its quite good commented so its a good example for a project.

<<less
Download (0.006MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1209 downloads
PG Calculator 2.2-6

PG Calculator 2.2-6


PG Calculator is a powerfull scientific skinable calculator. more>>
PG Calculator is a powerfull scientific skinable calculator. PG Calculator is an excellent replacement for standard Windows calculator.
PG Calculator works in algebraic and RPN mode. It recognizes real and complex numbers and allows simple vectors manipulations.
There are up to 120 recognized units of measure with possibility to make easy conversions between consistent units.
Enhancements:
- fixed to compile with GCC 4.1.1
<<less
Download (2.3MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1235 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
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
Bobs Calculator 1.11

Bobs Calculator 1.11


Bobs Calculator is a simple command-line calculator. more>>
Bobs Calculator is a simple command-line calculator. Does standard math in base 2/8/10/16, binary and/or/xor/not, and binary shift left / right.

Uses readline for command history and prints out calculation results in base 2/8/10/16. Great for random calculations during coding, or whatever. New version 1.1 inspired by ? key in IDA. Not a bc(1) clone.

Installation:

1. make
2. ./bc
3. help
4. C-d
5. vi calc.y
6. read top comment
7. :q
8. cp bc /somewhere/in/path
9. rehash (on *csh)
<<less
Download (0.012MB)
Added: 2006-10-20 License: GPL (GNU General Public License) Price:
1099 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5