1
vote
1answer
27 views

Python App Engine API to interact with Google Code Project Hosting

Referencing Manage Google Drive files through App Engine, I have kind of the same question about App Engine w.r.t. Google Code Project Hosting, i.e., is there a Python API to interact with the latter ...
1
vote
1answer
72 views

how to solve integration using simpsons rule in python?

I have the following assignment: Si(x) = the integral from 0 to x of sin(t)/t. Write a python code that takes the parameter x and returns the sine integral for that x. I cant figure out how to move ...
0
votes
1answer
34 views

how to use dorpi5 or dop853 in python

I have looked through scipy.integrate.ode but I am unable to find out how to actually use these integration methods, dorpi5 and dop853. Additionally, there was only one post on stackoverflow that I ...
0
votes
1answer
43 views

fitting data with an integral equation in python

I have some data that I am trying to fit with a model that includes and definite integral equation. My strategy was to use the optimize.leastsq and integrate.quad, I keep getting a type error: ...
0
votes
0answers
65 views

Python odeint integration error, gravity n body simulation

from numpy import array, linspace, asarray from numpy.random import rand from scipy.integrate import odeint from visual import mag # no of particles P = 3 # initial ...
7
votes
2answers
137 views

Scipy: Speeding up calculation of a 2D complex integral

I want to repeatedly calculate a two-dimensional complex integral using dblquad from scipy.integrate. As the number of evaluations will be quite high I would like to increase the evaluation speed of ...
3
votes
2answers
82 views

How do I get a line where the area on each side is equal?

. I need to find a line that splits up the points so that the blue area is equal to the read area. I am doing this to a numpy array that has all of the x and y points in it. I have tried splitting ...
6
votes
3answers
214 views

Model I-V in Python

Model I-V. Method: Perform an integral, as a function of E, which outputs Current for each Voltage value used. This is repeated for an array of v_values. The equation can be found below. Although ...
0
votes
1answer
173 views

how to find the integral of a matrix exponential in python

I have a matrix of the form, say e^(Ax) where A is a square matrix. How can I integrate it from a given value a to another value bso that the output is a corresponding array?
0
votes
1answer
310 views

D3.js Directed Graph Django Integration

I have a simple Django application that queries a database and displays the fields of the objects returned. I was wondering what would be the best way to go about integrating this directed graph ...
4
votes
2answers
192 views

solving for integration limits numerically?

I am trying to locate a region under the curve of two functions such that the area of this region equals a given number m. For example, by integrating the two functions: f(x) = 3x - 3x^2 g(x) = x ...
0
votes
1answer
58 views

Integration with Web Browsers

I am trying to make a download manager for Linux just like Internet Download Manager. I wanted to know how does IDM integrate with the browsers without using any Extensions (Chrome) or Add-Ons ...
1
vote
1answer
165 views

Integrate OpenERP with external applications

How would one go about integrating OpenERP with external applications? My team mate is developing a custom application as part of a bigger system and I need to access his application to pull some data ...
2
votes
3answers
2k views

Call Python function from Javascript code

I'd like to call a Python function from Javascript code, because there isn't an alternative in Javascript for doing what I want. Is this possible? Could you adjust the below snippet to work? ...
0
votes
0answers
147 views

Combining function integration with trapz integration

This is what I'm trying to do: Divide a numerically integrated array (over the whole data range) by a "quad" integrated function over a specific integration range: maxw = lambda t,en: ...
1
vote
2answers
456 views

Python: Integration of Interpolation

I've got some question I cant solve: #! /usr/bin/env python import numpy as np from scipy.interpolate import UnivariateSpline from scipy.integrate import quad import pylab as pl x = ...
1
vote
0answers
123 views

Solving a system of coupled iterative equations containing lots of heavy integrals and derivatives

I am trying to solve a system of coupled iterative equations, each of which containing lots of integrations and derivatives. First I used maxima (embedded in Sage) to solve it analytically, but the ...
2
votes
3answers
1k views

Numerical integration Loop Python

I would like to write a program that solves the definite integral below in a loop which considers a different value of the constant c per iteration. I would then like each solution to the integral to ...
3
votes
2answers
142 views

Make a variable accessible to all running programs

My messy solution: I am a beginning python programmer and because of my lack of advanced knowledge, I often use primitive tools to finish my advanced projects. Currently I am trying to exchange data ...
2
votes
0answers
279 views

Embedding a python interpreter to c++ [closed]

You'll have to forgive me if this question has been answered, but I haven't been able to find anything that specifically talks about what I need. I am attempting to embed a python interpreter into a ...
0
votes
1answer
1k views

Using scipy to perform discrete integration of the sample

I am trying to port from labview to python. In labview there is a function "Integral x(t) VI" that given a set of samples will perform a discrete integration of a list of samples and return a output ...
3
votes
1answer
964 views

Integrating Python with R

I am trying to install the appropriate packages to allow easy access to R from Python. From what I understand, I have to use a command called easy_install to install a program called py2 But to do ...
0
votes
1answer
159 views

Using PyMC to perform double integration

I need to perform double integration using MCMC method. I have already done it using romberg and doublequad integrations with correct results. I need to also use MCMC integration to compare the ...
1
vote
1answer
245 views

Area Integration in complex plane using python dblquad

my problem is related to Quantum Optics. I am trying to determine the Wigner Function for a Fock state, which involves integration in the complex plane. My code is very slow though, so I would like to ...
3
votes
2answers
102 views

Integration using qudrature

I have been having a few issues using the quadrature function in python 2.7 (part of the scipy.integrate module). The equation I am trying to integrate is simply: x/(d^2)-(x^2) The integration is ...
0
votes
1answer
173 views

Finding 4-dimensional minimum (a,b,c,d) of the integral of a function I(a,b,c,d)

I have a nasty discontinuous 2 dimensional integral I(k,k''; J,Jp,a,b,c,d) that has 4 variational parameters (a,b,c,d) and 2 fixed constants (J,Jp). The procedure to finding the integral isn't ...
0
votes
1answer
118 views

How can I integrate in cylindrical coordinates with Scipy?

I know how to integrate a function with Scipy. I do it in this way: from scipy import * from scipy import integrate integral = integrate.simps(y,x) In this way I integrate with the ...
2
votes
4answers
2k views

How to solve an integral equation in python?

I'm trying to solve this integral equation using Python: where z ranges from 0 to 1. The scipy.quad function only provides the numerical solution for a certain interval, but it doesn't provide the ...
0
votes
1answer
736 views

How to get Gitzilla to work

I have recently set up a bugzilla instance for bug tracking and would like to integrate it with git. I found Gitzilla which seemed to be awesome from its description, but I am now fed up after hours ...
1
vote
1answer
198 views

It's possible to integrate Python with Java?

I have a main application that is coded with Java, but I want to use Python because the NLTK lib. I want to know if it's possible do some integration with these two languages. Thinks like passing ...
2
votes
2answers
481 views

How can I create a Python wrapper around Perl code?

I'm hoping to write a Python wrapper around an existing Perl API for a site I'm intending to build using the RESTful web services framework. Has anyone been able to do this (build a Python-to-Perl ...
1
vote
1answer
286 views

Joomla website (and its db ) + Python(add,edit, upgrade in another db ) application Integration

How can one integrate a web application(built in joomla) to (communicate, update db, do cron jobs) to a application in python(or django) , Since my website has huge no of visitors, I feel should ...
0
votes
2answers
2k views

Opencv 2.2 not recognized on Python 2.7 (Ubuntu/Windows XP)

I've been trying to connect opencv and python in both Ubuntu and Windows XP. I've failed on both. I've read many webpages and threads about "how to install" it but none has worked (the worst part is ...
2
votes
3answers
369 views

Python integrals

I'm trying to solve the integral of (2**(1/2)*y**(1/2)/2)**2 from 0 to 5 (also shown here). I've been using func = lambda y: ( 2**(1/2) * y**(1/2)/2 )**2 and a == 0 and b == 5 from scipy import ...
3
votes
2answers
375 views

Can Java and Python coexist in the same app?

I need to have a Java instance fetching data directly from the Python's instance datastore. I don't know if that's possible at all. Is the datastore transparent/unique, or each instance (if they can ...
0
votes
1answer
781 views

Integrate Python's Django into a C++ application

I would like to integrate Python, and specifically Django, to a C++ application. This is for many reasons which include, but not limited to: Ease of data handling and feature development in python ...
0
votes
2answers
1k views

Properly evaluating double integral in python

I am trying to compute a definite double integral using scipy. The integrand is a bit complicated, as it contains some probability distributions to give weight to how likely is each value of x and y ...
0
votes
2answers
984 views

Pass list as argument to Python C module?

I found this nice example of a Python C Module, where a single integer is passed along as the only argument. How can I instead pass a python list as argument?
0
votes
1answer
241 views

what should i do after openid (or twitter ,facebook) user login my site ,on gae

how to integration local user and openid(or facebook twitter) user , did you know some framework have already done this , thanks updated my mean is : how to deal with 'local user' and 'openid ...
3
votes
2answers
1k views

Using Python functions in Tkinter.Tcl()

I have a bunch of Python functions. Let's call them foo, bar and baz. They accept variable number of string arguments and does other sophisticated things (like accessing the network). I want the ...
5
votes
2answers
2k views

2D integrals in SciPy

I am trying to integrate a multivariable function in SciPy over a 2D area. What would be the equivalent of the following Mathematica code? In[1]:= F[x_, y_] := Cos[x] + Cos[y] In[2]:= ...
2
votes
3answers
661 views

Integrating Python or Perl with PHP

I'm going to help my friend in a improve of his phpBB board, but I want to make somethings there in Python or Perl. But it's possible to integrate these languages with PHP?
4
votes
1answer
1k views

Running a Django test server under twisted web

As I'm writing an application which uses twisted web for serving async requests and Django for normal content delivery, I thought it would have been nice to have both run under the same twisted ...
18
votes
1answer
2k views

Integration of Python console into a GUI C++ application

I'm going to add a python console widget (into a C++ GUI) below some other controls: Many classes are going to be exposed to the python code, including some access to GUI (maybe I'll consider PyQt). ...
4
votes
3answers
1k views

Integrate Python app into PHP site

This might sound really crazy, but still... For our revamped project site, we want to integrate Trac (as code browser, developer wiki and issue tracker) into the site design. That is, of course, ...
1
vote
5answers
441 views

Python, Perl And C/C++ With GUI

I'm now thinking, is it possible to integrate Python, Perl and C/C++ and also doing a GUI application with this very nice mix of languages?
8
votes
10answers
6k views

Integrate Python And C++

I'm learning C++, because it's a very flexible language, but for internet things like Twitter, Facebook, Delicious and others, Python is so much more better, then i want to know if it's possible to ...
16
votes
7answers
6k views

Java Python Integration

I have a Java app that needs to integrate with a 3rd party library. The library is written in Python, and I don't have any say over that. I'm trying to figure out the best way to integrate with it. ...
5
votes
5answers
2k views

How do I include a PHP script in Python?

I have a PHP script (news-generator.php) which, when I include it, grabs a bunch of news items and prints them. Right now, I'm using Python for my website (CGI). When I was using PHP, I used something ...
1
vote
6answers
3k views

Can someone explain why scipy.integrate.quad gives different results for equally long ranges while integrating sin(X)?

I am trying to numerically integrate an arbitrary (known when I code) function in my program using numerical integration methods. I am using Python 2.5.2 along with SciPy's numerical integration ...

1 2