Questions tagged [integrate]

Avoid using this tag as it is vague. For system integration, use tag [integration]; for numerical integration, use tag [numerical integration] as well as the tag for the computing language you are using.

Please avoid using this tag as it is vague. For system integration, use tag [integration]; for numerical integration, use tag [numerical integration] as well as the tag for the computing language you are using.

465 questions
31
votes
7 answers

Integrating Prolog with C#

Does anyone know of a nice (and preferably free) way to integrate Prolog and C#? Im looking to create a Prolog dll or similar to call from my managed code, and retrieve an answer once all the processing has been complete. Im looking for it to be…
TK.
  • 46,577
  • 46
  • 119
  • 147
18
votes
5 answers

Is there any way to integrate OpenCV with PHP?

I am trying to develop an application with PHP. There are two possible ways this application will be developed. The first one is to try to do something like www.picnik.com, image processing directly on the browser. The other is to develop CBIR…
Gustavo
  • 181
  • 1
  • 1
  • 4
18
votes
4 answers

Dispersing n points uniformly on a sphere

I am trying to disperse n points on a sphere such that each point has the "same" area "around" it. Basically, I'm trying to integrate a function over a sphere by evaluating at n points and assuming that each area element is the same (and equal to…
alexvas
  • 695
  • 2
  • 8
  • 23
10
votes
6 answers

Can I integrate checked out files into a different branch on perforce

We were working on a design, and for that we created the skeleton of the classes in our main branch. Now, we are starting to code, and for that we got a new branch. So, it would be nice if I can move all the new files in the main branch into the…
user38703
  • 101
  • 1
  • 3
9
votes
2 answers

How to integrate waze data with my web page?

Waze is an application, which offers an actual traffic information. There is also a livemap Waze livemap - where are marks as you can see. So, I found some site: Check this link - egaraz and I'm really curious how did egaraz.cz fetch (parse) data…
user1666761
  • 163
  • 2
  • 3
  • 13
8
votes
2 answers

How to integrate PyQt designer in Eclipse?

I'm trying to integrate the pydev, pyqt, python and eclipse. Now the code can be runing without error. And I know to make the GUI in Qt Designer. and then modified it in Eclipse. Now I want to integrate the Qt Designer of PyQt to Eclipse. Just like…
sunny2016
  • 1,345
  • 3
  • 13
  • 22
8
votes
2 answers

Can we use Base R to find the 95% of the area under a curve?

Using Base R, I was wondering if I could determine the 95% area under the curve denoted as posterior below? More specifically, I want to move from the mode (the green dashed line) toward the tails and then stop when I have covered 95% of the curve…
rnorouzian
  • 7,397
  • 5
  • 27
  • 72
7
votes
4 answers

P4v Integration error

I have created a new branch (N) from one of my code lines (A). Now I am trying to integrate some files from another codeline (B) having the same tree structure into my new branch. I am using Integrate option from P4v GUI.Source branch is B and…
codarien
  • 91
  • 1
  • 3
7
votes
2 answers

Using numba.jit with scipy.integrate.ode

Using numba.jit to speed up right-hand-side calculations for odeint from scipy.integrate works fine: from scipy.integrate import ode, odeint from numba import jit @jit def rhs(t, X): return 1 X = odeint(rhs, 0, np.linspace(0, 1, 11)) However…
germannp
  • 197
  • 4
  • 15
7
votes
5 answers

Are there tools to integrate Java and C++?

thanks for reading this question. I am doing this homework which need a GUI as frond end to integrate with back end code which written in C++. I wanna to write this front end GUI in java as its cross-platform feature and strong graphic…
user224169
6
votes
3 answers

Should I submit unchanged files to Perforce?

I'm using Perforce to integrate two codelines. In the resulting changelist, there are files which are marked as opened for integration, but have not actually changed. Should I submit these unchanged files or should I revert them? I want to revert…
Eddy Mulyono
  • 133
  • 2
  • 5
6
votes
2 answers

Amazon MWS with PHP integration

I am new to amazon mws. I want to do the mws api integration with php. I have all the credentials whatever needed like secret key, seller id, and etc. Basically i want to display all my orders in my php website. I tried with use of developer guide…
DP TechRocket
  • 114
  • 1
  • 1
  • 7
6
votes
1 answer

Integrate Gerrit with Gitlab

Do you have any tips or tutorials how to integrate Gerrit with Gitlab - Gerrit should be as code review for Gitlab repo?
Lavrentijs L
  • 119
  • 1
  • 8
6
votes
2 answers

Using constants wisely in SymPy

I tried the following on SymPy Live b,c,t = symbols('b c t') g = 1/(1+exp(c*(b-t))) integrate(g,t) The result is Integral(1/(exp(c*(b - t)) + 1), t) which I understand as "could not handle this". However, when I try g =…
Dieter Menne
  • 10,076
  • 44
  • 67
6
votes
1 answer

Errors while solving ODE's python

I have a university project in which we are asked to simulate a satellite approach to Mars using ODE's and SciPy's odeint function. I manage to simulate it in 2D by making a second-order ODE into two first-order ODE's. However I am stuck in the…
1
2 3
30 31