Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
707 views

Efficiency of stack-based expression evaluation for math parsing

I have to write, for academic purposes, an application that plots user-input expressions like: f(x) = 1 - exp(3^(5*ln(cosx)) + x) The approach I've chosen to write the parser is to convert the ...
5
votes
6answers
5k views

Converting Reverse Polish Notation

Is there any way to interpret Reverse Polish Notation into "normal" mathematical notation when using either C++ or C#? I work for an engineering firm, so they use RPN occasionally and we need a way to ...
3
votes
3answers
719 views

Can this Python postfix notation (reverse polish notation) interpreter be made more efficient and accurate?

Here is a Python postfix notation interpreter which utilizes a stack to evaluate the expressions. Is it possible to make this function more efficient and accurate? #!/usr/bin/env python ...
3
votes
3answers
786 views

C++ stack for multiple data types (RPN vector calculator)

I have designed a quick and basic vector arithmetic library in C++. I call the program from the command line when I need a rapid cross product, or angle between vectors. I don't use Matlab or Octave ...
2
votes
1answer
50 views

Can RPN (Reverse Polish Notation) or Postfix Notation be derived by Regular Expression

I was wondering if I can define a Regular Expression to check whether a given input matches the RPN expression , i.e. whether the given input is valuid or not? I am not very familiar with Regex ...
2
votes
0answers
45 views

Could an Applicative Language use Postfix Notation?

I've always found postfix languages like Factor to be far more readable than prefix (Lispy languages) and infix/postfix languages (all C-style languages, if we include both operators and functions). ...
2
votes
1answer
213 views

A Complete RPN Expr-Eval Program Inside a Tweet? — “YES WE CAN!”, Using LISP [closed]

The Program (115 Chars) (defun rpn(e)(let((s()))(dolist(x e)(if(numberp x)(push x s)(push(eval(reverse(list(pop s)(pop s)x)))s)))(car s))) A simple test: CL-USER> (rpn '(1 2 3 * + 4 2 / +)) ...
1
vote
3answers
204 views

Reverse polish notation C# don't work correctly

I write an rpn, with a struktogram. Newest Problem: It is'nt work correctly now. If input string is "5 + ((1 + 2) * 4) - 3" My output is: 5 1 2 + 4 * 3 - + I have to got this result: 5 1 2 + 4 * ...
1
vote
1answer
74 views

Polish notation rules to add “in” and operator with logics

i have that expression ratecode in ('EURV','EURA','EURB','EURO','CHUPin*+-da~') && ( sourcecode ~in ('FMFC','FM') || block == 'yes') now that are rpn rules /// 2. Repeat until we ...
1
vote
2answers
55 views

Need help putting radial distant into reverse polish notion for a lisp program

The distance formula for polar coordinated is shown here: http://math.ucsd.edu/~wgarner/math4c/derivations/distance/distancepolar.htm I've tried doing it this way: (defun distant-formula (r1 r2 t1 ...
1
vote
1answer
2k views

Infix to Postfix and unary/binary operators

I have a piece of code that converts an infix expression to an expression tree in memory. This works just fine. There's just one small trouble. I just connect work out how to involve the unary ...
1
vote
1answer
523 views

Parsing expressions with an undefined number of arguments

I'm trying to parse a string in a self-made language into a sort of tree, e.g.: # a * b1 b2 -> c * d1 d2 -> e # f1 f2 * g should result in: # a * b1 b2 -> c * d1 d2 -> e # ...
1
vote
3answers
194 views

Can all RPN expressions be represented such that all operators appear on the left and all operands appear on the right?

I've convinced myself that they can't. Take for example: 4 4 + 4 / stack: 4 stack: 4 4 4 + 4 = 8 stack: 8 stack: 8 4 8 / 4 = 2 stack: 2 There are two ways that you could write the above ...
0
votes
4answers
84 views

how to scanf a number-and-operator series using a while loop?

I have a stdin input like " 33 44 55 + 66 * + = ", (i.e, Reverse Polish notation,RPN), and I use codes as follows to parse it. But scanf("%d") reads '+' and discards it, how to ungetc the operator and ...
0
votes
2answers
341 views

Stanford CS193p Assignment 2 - Entering variables into RPN calculator

I am currently teaching myself iPhone programming and working on solving assignment 2 [PDF] of this year Stanford CS193p course. There's something I don't understand about Required Task 1. One is ...
0
votes
2answers
131 views

Reverse Polish Calculator in C : isdigit() issues

I'm doing a homework assignment in C. I have to build a calculator that takes in RPN, converts it to a double, adds / removes it from stack and prints what's left on the stack. Everything seems to be ...
0
votes
0answers
50 views

How do I calculate sums on the Statistics Registers on an HP 35s?

The HP35s has a few built in functions for sums (∑x, ∑xy and so on), but - in a program - how would I go about calculating something like this? ∑(xi − x̄) For each of the values I ...
0
votes
2answers
653 views

java rpn calculator

i would like to include a simple RPN type calculator function in one of my projects. basically i need a method that can convert for example: "30 / ((1 + 4) * 3)" into "2" does anyone know of any ...
0
votes
3answers
416 views

How do I detect an operator vs. int in C using scanf?

How do I read in the following input in my RPN calculator so that it will find the operator no matter what order? 2 2+ 4 As of now my scanf only sees the first char in the string and I can only do ...
0
votes
0answers
780 views

Simple RPN Calculator in Assembly (mips32)

i have a project in my university about RPN calculator in Assembly language but i dont really know much . can someone help me out with the code ? thanks !!!
0
votes
3answers
241 views

Best way to calculate the result of a formula?

I currently have an application which can contain 100s of user defined formulae. Currently, I use reverse polish notation to perform the calculations (pushing values and variables on to a stack, then ...
-1
votes
2answers
211 views

Binary Operads sample program

Problem Statement : Write a C++ program to evaluate postfix expressions. Your program should take postfix expression as an input, process it with the help of stack and display the result after ...
-4
votes
1answer
131 views

RPN Problems (Order of Operations) [closed]

I'm trying to make a simple calculator with order of operations. I had read in the Internet and found the algorithm of RPN (Reverse Polish notation). EDIT: Lets take an example: 2 * 5 - 3 + 4 Ok, I ...