0
votes
1answer
14 views

Unsupported operand type(s) in formula

I m having problems getting python 2.7 to do this formula. Its purpose is to convert Landsat 7 DN values to reflectance values. b1 references a band1 TIFF image. L_B1 = float(((LMax_B1 - LMin_B1) / ...
2
votes
2answers
81 views

How do I pass parameters to a Python function?

I am trying to use this function found online to calculate the distance between two latitude and longitude points on the Earth. However, I do not know how to pass my values for latitude and longitude ...
0
votes
0answers
156 views

Leibniz determinant formula complexity

I wrote some code that calculates the determinant of a given nxn matrix using Leibniz formula for determinants. (http://en.wikipedia.org/wiki/Leibniz_formula_for_determinants) I am trying to figure ...
1
vote
1answer
35 views

Python dictionary ManuaLoa CO2

I need some help with my python program. I have imported a .txt file and made a dictionary of it in an numpy array. The text file is a table of co2 meassures, one per month per year. I need to ...
1
vote
2answers
205 views

Converting word frequency to a graphical histogram in python

This is what I have right now, thanks to Pavel Anossov. I am trying to convert the word frequency that has been outputed into asterisks. import sys import operator from collections import Counter ...
1
vote
1answer
128 views

Displaying (nicely) an algebraic expression in PyQt

In my python program is a hierarchy of mathematical objects I've created, that represent mathematical formulae. For example, there's Collection, which is a series of Equations, which is a container of ...
-6
votes
1answer
87 views

what type of data is the '/' and '*' symbol

Hey im making some code which will read in a formula and will print out a variable according to the formula.... So i was wondering what type of data '*' and '/' is? heres an example of what i want to ...
0
votes
1answer
435 views

Preserving Formula in Excel Python XLWT

I am working on the XLWT XLRD XLUTIL packages. Whenever I write to a new sheet, all the formulas have been obliterated. I tried the following fixes, but they all failed: Re-write all the formulas ...
0
votes
2answers
159 views

Python how to iterate data from txt file for input in formula for coordinate transformation?

Beginer to python, and programming - I want to read WGS84 DD lat long values from inputfile.txt' and transform them to a new coordiante system N/E and write the N/E output to 'outputfile.txt. There ...
0
votes
2answers
219 views

distance formula in python bug

I'm calculating the length of a line segment in python, but I don't understand why one piece of code gives me zero and the other gives the right answer. This piece of code gives me zero: def ...
2
votes
2answers
455 views

Python spreadsheet-like formula parser?

I have a list of dictionaries such as: l =[{country:'Italy',sales:100,cost:50}{country:'Italy',sales:130,cost:60} {country:'Germany',sales:110,cost:50}] I want a python function that ...
1
vote
1answer
238 views

Get the average number of occurrences in a list of dicts

Given a list of dictionaries (a log JSON from MongoDB), where one of the values of the dict is a datetime value, I need to know the frequency it happens. Let's say: [ {"time": "2010-11-11 ...
0
votes
3answers
831 views

Is there any way to edit an existing Excel file using Python preserving formulae?

I am trying to edit several excel files (.xls) without changing the rest of the sheet. The only thing close so far that I've found is the xlrd, xlwt, and xlutils modules. The problem with these is it ...
2
votes
1answer
2k views

How to convert Math Formula to Python code?

Are there any easy ways to convert mathematical formulas to Python code? Perhaps translators, web reference, specific book chapters, anything ~ For regular expressions there are programs such as ...
12
votes
3answers
5k views

Get formula from Excel cell with python xlrd

I have to port an algorithm from an Excel sheet to python code but I have to reverse engineer the algorithm from the Excel file. The Excel sheet is quite complicated, it contains many cells in which ...
2
votes
4answers
2k views

Print latex-formula with python

I search the whole time but cannot find it. How to show an easy latex-formula in python? Maybe numpy is the right choice? EDIT: I have a python code like: a = '\frac{a}{b}' and want to print this ...
0
votes
4answers
287 views

Python implementation question

Hey. I have a problem I'm trying to solve in Python and I can't think of a clever implementation. The input is a string of letters. Some of them represent variables, others represent operators, and I ...
1
vote
4answers
2k views

Calculating formulae in Excel with Python

I would like to insert a calculation in Excel using Python. Generally it can be done by inserting a formula string into the relevant cell. However, if i need to calculate a formula multiple times for ...