| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | CalcPac RPN 1.50 |
windows | Business Finance->Applications | $19.95 |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 2 | CalcPac RPN 1.26 |
windows | Business Finance->Calculator Converter | $19.95 |
View Detail
|
|||||||||
Key Benefits include: Over 120 business functions; Can solve mortgage, loan, lease and savings problems. No problem is too tough for CalcPac RPN; Operates like the Hewlett Packard 12C (HP-12C). If you know how to use the HP-12C, you know how to use CalcPac RPN; Is fully programmable: programs can be saved on disk and reloaded later; CalcPac RPN has a tape that can be printed, saved and reloaded; CalcPac RPN also generates amortization tables showing principal and interest for each period; Amortization tables can be exported to Excel and other applications; CalcPac generates depreciation schedules for straight line, declining balance and sum-of-the-years digits methods; CalcPac RPN generates graphics of depreciation schedules, amortization schedules, cash flows and X-Y data plots; Change CalcPac RPNs appearance by switching to any of the 10 included skins; CalcPac RPN can be "rolled up," minimized to the tray or be set to stay on top of other applications; CalcPac RPN can import and export statistical and cash flow data. Tags: |
||||||||||||||
| 3 | CalcPac RPN 1.50 |
windows | Home Education->Other | $19 |
View Detail
|
|||||||||
CalcPac RPN is an powerful business calculator that can handle hundreds of business uses. Operates like the Hewlett Packard 12C (HP-12C) Is fully programmable: programs can be saved on disk and reloaded later CalcPac RPN has a tape that can be printed, saved and reloaded Calculates present value, future value annuities, mortgages leases and many other business calculation CalcPac RPN also generates amortization tables showing principal and interest for each period Amortization tables can be exported to Excel and other applications Internal graphics capabilities can generates graphs for loan amortizations, cash flows and depreciation schedules CalcPac generates depreciation schedules for straight line, declining balance and sum-of-the-years digits methods. CalcPac RPN generates graphics of depreciation schedules, amortization schedules, cash flows and X-Y data plots. Change CalcPac RPNs appearance by switching to any of the 10 included skins. Tags: |
||||||||||||||
| 4 | Ak RPN Reg 1.0 |
pda | Desktop Shell->Development | FREE |
View Detail
|
|||||||||
Ak RPN Reg is a little tool for shareware developers. If you develop sharewares on PalmOS and let Handango sells you products, you should know about Dynamic Registration. Dynamic Registration is a service provided by Handango. To use this service, your products serial numbers should be calculated out from the RPN string and the C/DUI string. Ak RPN Reg helps you calculate the serial number on your handheld device. Ak RPN Reg is a freeware. Hope you enjoy it! Tags: |
||||||||||||||
| 5 | RPN 3.62 |
pda | Business->Calendar | 29.00 $ to buy |
View Detail
|
|||||||||
RPN is a programmable, postfix scientific calculator for Palm OS: Postfix Graphing Solving Programmable Recordable Hi-res interface Customizable colors Scientific and engineering functions Conversion functions Finance (TVM) functions Many format and base options Script editor No need for MathLib Palm OS 3.1 or later High precision 112k in size Whats new in this release: · Recordings now remember and replay the choices made in dialogs rather than present the dialog again. · Fixed About... dialog display in Palm OS 3.x. · Fixed key shortcuts for + and x^2. · Improved accuracy of temperature conversions involving F degrees. · Fixed Reinstall All... scripts menu action. · Added UDx bcode to queue up the choice for the next dialog. · Fixed timer problem in About dialog. Requirements: · Palm OS 3.1 · 103KB RAM Tags:
|
||||||||||||||
| 6 | Parse::RPN 2.34 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Parse::RPN is a minimalist RPN parser/processor (a little like FORTH). SYNOPSIS use Parse::RPN; $result=rpn(string ...); @results=rpn(string ...); $error=rpn_error(); string... is a list of RPN operator and value separated by a coma in scalar mode RPN return the result of the calculation (If the stack contain more then one element, you receive a warning and the top value on the stack) in array mode, you receive the content of the stack after evaluation rpn() receive in entry a scalar of one or more elements coma separated and evaluate as an RPN (Reverse Polish Notation) command. The function split all elements and put in the stack. The operator are case sensitive. The operator are detect as is, if they are alone in the element of the stack. Extra space before or after are allowed (e.g "3,4,ADD" here ADD is an opeartor but it is not the case in "3,4,ADD 1") If element is not part of the predefined operator (dictionary), the element is push as a litteral. If you would like to put a string which is part of the dictionary, put it between quote or double-quote (e.g "3,4,ADD" here ADD is a literal and the evaluation reurn ADD and a warning because the stack is not empty) If the string contain a coma, you need also to quote or double-quote the string. (be care to close your quoted or double-quoted string) The evaluation follow the rule of RPN or FORTH or POSTCRIPT or pockect calcutor HP. Look on web for documentation about the use of RPN notation. I use this module in a application where the final user need to create an maintain a configuration file with the possibility to do calculation on variable returned from application. The idea of this module is comming from Math::RPN of Owen DeLong, owen@delong.com that I used for more then a year before some of my customer would like more ... I correct a bug (interversion of > and >=), add the STRING function, pattern search and some STACK functions. rpn_error() return the last error from the evaluation (illegal division by 0, error from the PERL function execution...) each time that rpn() is call the rpn_error() is reinitianised. Tags: |
||||||||||||||
| 7 | Math::RPN 1.08 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
RPN is a Perl extension for Reverse Polish Math Expression Evaluation. SYNOPSIS use Math::RPN; $value=rpn(expr...); @array=rpn(expr...); expr... is one or more scalars or lists of scalars which contain RPN expressions. An RPN expression is a series of numbers and/or operators separated by commas. (commas are only required within scalars). The rpn function will take a scalar or list of sclars which contain an RPN expression as a set of comma delimited values and operators, and return the result or stack, depending on context. If the function is called in an array context, it will return the entire remaining stack. If it is called in a scalar context, it will return the top item of the stack. In a scalar context, if more than one value remains on the stack, a warning will be sent to STDERR. In the event of an error, an error message will be sent to STDERR, and rpn will return undef. The expression can contain any combination of values and operators. Any token which is not an operator is assumed to be a value to be pushed onto the stack. An explanation of Reverse Polish Notation is beyond the scope of this document, but it I will describe it briefly as a stack-based way of writing mathematical expressions. This has the advantage of eliminating the need for parenthesis and simplifying parsing for computers vs. normal algebraic notation at a slight cost in the ability of humans to easily comprehend the expressions. This evaluator works by cycling through the expression from left to right. As each token is encountered, it is checked against the list of operators. If it matches, then a check is performed for stack underflow. If the stack has not underflowed, the operation is performed by removing the required number of operands from the top of the stack. The result is then pushed on to the stack. Operations for which order is significant (-,/,%,etc.) are processed such that the top item on the stack is treated as the right operand, and the next item down is treated as the left operand. Thus, "5,3,-" would yield 2, not -2. If the token does not match any of the known operators, the token is blindly pushed onto the stack. As a result, one can produce unexpected results. For example, the expression "5,3,grandma,+,*" would produce 15 because 5*(3+0) is how it would end up evaluated. That is, 5 would be pushed onto the stack, then 3, then "grandma". Next, + is evaluated, so 3+"grandma" is evaluated. PERL evaluates "grandma" to be numerically 0, so 3 is pushed back onto the stack. Next, the * multiplies the top two items of the stack [5][3], producing 15, which is pushed back onto the stack. Tags: |
||||||||||||||
| 8 | RPN Calculator 2.45 |
windows | Business Finance->Calculator Converter | $20.00 |
View Detail
|
|||||||||
RPN Calculator is a reverse polish notation programmable calculator for science and engineering. It supports over 180 functions and 11 data types (real, integer, variable, vector, matrix, list, program, unit, complex, string, and tag). The stack, variables, and programs can be saved and reloaded. The number of levels of stack that can be used is virtually unlimited. If the number of levels in the stack exceeds the display, you can scroll up or down to see more. RPN Calculator is compatible with Windows 95, 98, Me, NT 4.0, and 2000. The $20 reg fee includes the Windows CE version. Tags: |
||||||||||||||
| 9 | Mini RPN calc 1.80 |
windows | Business Finance->Calculator Converter | Free |
View Detail
|
|||||||||
This is a FREE RPN Calculator. Stack can store as many item as you want. RPN calculation is a smart way to compute numbers, results are stored into stack for later use. If you are an expert in RPN, you will love the quick access to functions. If you just begin in RPN, you wont be perturbed by too much buttons. in every case this calculator is for you ! _a must have_ Tags:
|
||||||||||||||
| 10 | RPN Calculator 1.0.1 |
pda | Business->Calculator | FREE |
View Detail
|
|||||||||
RPN is a free reverse polish notation calculator for Palm OS modelled after the HP48 series of calculators. Tags: |
||||||||||||||
| 11 | Mini RPN Calc 1.8.1 |
windows | Graphic Apps->CAD | Free |
View Detail
|
|||||||||
Mini RPN Calc is developed as a simple RPN calculator with all basic functions for windows. It is a very useful application if you intend to use a simple calculator for you needs. Tags: |
||||||||||||||
| 12 | RPN PopUp Calculator 1.0.1 |
pda | Business->Calculator | 9.95 $ to buy |
View Detail
|
|||||||||
RPN PopUp Calculator is a HackMaster extension which pops up a calculator over the active application. It is activated with the simple (definable) pen stroke. When you are finished with calculation, you are back to your application with just one tap. You can exchange data with your application if it supports copy and paste, or if it has an input field. Numbers and operations can also be entered with graffiti. RPN PopUp Calculator has a simple forth-like script language, so you can write your own functions. RPN PopUp Calculator is compatibile with OS 2.0 and later. It will not work on older (Pilot 1000/5000 with OS 1.x) models. IMPORTANT: RPN PopUp Calculator is free for all registered users of PopUpCalculator! Tags:
|
||||||||||||||
| 13 | Rays RPN Calculator 3.0 |
pda | Business->Calculator | FREE |
View Detail
|
|||||||||
It is RPN calculator for the PocketPC 2002 Stores all settings in Registry so that numbers and settings are preserved (as long as program was shut down gracefully). Tags:
|
||||||||||||||
| 14 | RPN Calculator Bar 1.21 |
windows | Network Internet->Web Browsers | FREE |
View Detail
|
|||||||||
RPN Calculator Bar displays a simple and minimally invasive RPN Calculator on top of the status bar. It features basic arithmetics, a 4-values-deep stack, mathematic functions and 6 memories. The values stored in memory are saved from one session to the next. Requirements: Tags: |
||||||||||||||
| 15 | RPN Calculator Bar 1.22 |
windows | Network Internet->Web Browsers | FREE |
View Detail
|
|||||||||
RPN Calculator Bar displays a simple and minimally invasive RPN Calculator on top of the status bar. It features basic arithmetics, a 4-values-deep stack, mathematic functions and 6 memories. The values stored in memory are saved from one session to the next. Requirements: Changes from previous version Tags: |
||||||||||||||
| 16 | Vinny RPN Calculator 1.21 |
windows | Utilities->Mouse and Keyboard | $5.00 |
View Detail
|
|||||||||
Tags:
|
||||||||||||||
| 17 | Vinny RPN Calculator 1.22 |
windows | Utilities->Mouse and Keyboard | $5 |
View Detail
|
|||||||||
Tags:
|
||||||||||||||
| 18 | Entack RPN Calculator 2.0 |
windows | Business Finance->Calculator Converter | $20.00 |
View Detail
|
|||||||||
Entack RPN is an easy-to-use, powerful calculator. It has a fully editable 100-position stack(10 viewable, with a 10-position memory. It also had an Undo button, Backspace button and clear buttons nexr to a conveniently and compactly arranged basic arithmetic functions. There is also a panel of advanced functions such as, power, log, trigonometric (Radians or Degrees mode), and other advanced functions. All values are displayed in either engineering notation or fixed decimal places (0 - 8 digits). Version 2.0 is more reliable, had more functions and better saves your settings. Tags: |
||||||||||||||
| 19 | Vinny RPN Calculator 1.15 |
windows | Utilities->Mouse and Keyboard | $5.00 |
View Detail
|
|||||||||
A Reverse Polish Notation utility program for science and engineering students. It temporarily converts the computers numeric key pad into a RPN calculator by allowing direct use of key pad digits, [+,-,*,/] keys, [Enter] and [Up/Down Arrow & Page] keys. Trigonometric and logarithmic functions areprovided by mouse clicking on dialog box buttons. Linkage to other applications is available through use of the Windows clipboard. Optional features include window stay on top and window shrinkage. This zip package contains the complete 32-bit utility program for Windows 95. Tags: |
||||||||||||||
| 20 | MxCalc 12c RPN Financial Calculator PPC 1.2.3 |
windows | Business Finance->Calculator Converter | $19.99 |
View Detail
|
|||||||||
A HP 12c * RPN Financial Calculator software for Windows Mobile Pocket PC. Free Desktop Version!. ~ Looks as good as the HP-12c. ~ Performs as good as the HP-12c. Calculate loan payments, interest rates and conversions, standard deviation, percent, TVM, NPV, IRR, cash flows, bonds and more. Ideal for real estate, finance, accounting, economics and business related work. Features:- RPN, Algebraic, Programming, Finance, Statistic Modes More-than 130 built-in functions Full Screen & Quick Stack Display Window showing all of the financial registers Programmable... MxCalc 12c RPN Financial Calculator PPC v1.2.3 release is New Release. Tags:
|
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
