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
4
votes
1 answer

Specflow and Visual Studio 2010 Coded UI Test integration

Is there a way to integrate Visual Studio 2010 Coded UI Test with Specflow? I am not sure if these 2 can hook somehow. I have this idea to Create a Data-Driven Coded UI Tests by using some Coded UI API (I don't know yet what) and hook it up into…
Rad
  • 933
  • 1
  • 15
  • 32
4
votes
3 answers

Integrate a function with each element of numpy arrays as limit of integration

I have a function in python (using scipy and numpy also) defined as import numpy as np from scipy import integrate LCDMf = lambda x: 1.0/np.sqrt(0.3*(1+x)**3+0.7) I would like to integrate it from 0 to each element in a numpy array say z =…
Rohin Kumar
  • 730
  • 2
  • 10
  • 24
4
votes
1 answer

Python: Simpson's rule, negative answer for positive area under the curve?

I have y1=[ 9.49110000e-004 4.74145420e-004 1.41847155e-008 3.33228420e-028 3.76352289e-081 4.48206815e-193 0.00000000e+000 0.00000000e+000 0.00000000e+000 0.00000000e+000 0.00000000e+000] x=[ 112. 111.97667396 …
HuShu
  • 501
  • 6
  • 19
4
votes
2 answers

how to integrate orkut in my website through orkut api

i'm a beginner to orkut api and i don't know how to integrate orkut in my website. I just don't know how to pass the user information to orkut server to get the response form the orkut server. Can u please give me the sample code for getting just…
yuvaraj
  • 41
  • 2
4
votes
3 answers

Lambda expression exercise

I have been trying to learn more about lambda expressions lately, and thought of a interesting exercise... is there a way to simplify a c++ integration function like this: // Integral Function double integrate(double a, double b, double…
user35288
4
votes
1 answer

Python solving 2nd order ODE with quad function

I am studying the dynamics of a damped, driven pendulum with second order ODE defined like so, and specifically I am progamming: d^2y/dt^2 + c * dy/dt + sin(y) = a * cos(wt) import numpy as np import matplotlib.pyplot as plt from scipy import…
Medulla Oblongata
  • 3,771
  • 8
  • 36
  • 75
4
votes
1 answer

Is there an easy way to integrate a profiling tool with Code::Blocks?

I love working with the Code::Blocks (C++ IDE), and I got to wondering... is there a tool you can use to profile your code that integrates with Code::Blocks? I'm thinking of a Windows tool right now, but a Linux tool would be good too. Maybe…
Nathan Osman
  • 71,149
  • 71
  • 256
  • 361
4
votes
2 answers

Emulating MATLAB's ode15s in Python

I am working on translating a model from MATLAB to Python. The crux of the model lies in MATLAB's ode15s. In the MATLAB execution, the ode15s has standard options: options = odeset() [t P] = ode15s(@MODELfun, tspan, y0, options, params) For…
user3780330
  • 71
  • 1
  • 5
4
votes
1 answer

Integrate web system with card payment processing terminals

I would like to integrate my web system with card payment processing terminals. Within the system there is a payment module with the expenses of the client. If the client choose to pay with a debit/credit card, him/her will physically swipe their…
dan
  • 990
  • 1
  • 14
  • 22
4
votes
2 answers

Problems importing scipy.integrate module

I have a reoccurring issue with importing the integrate module of scipy. Periodically, I get the Error message "ImportError: cannot import name integrate". Usually, I use the statement import scipy.integrate to import the module. Only using import…
user1984653
  • 530
  • 1
  • 5
  • 10
4
votes
3 answers

Area between two lines inside the square [-1,+1] x [-1,+1]

I'm working on a project in Matlab and need to find the area between two lines inside of the square [-1,+1]x[-1,+1] intersecting in a point (xIntersection,yIntersection). So the idea is to subtract the two lines and integrate between [-1,…
Matteo
  • 7,924
  • 24
  • 84
  • 129
4
votes
2 answers

Python/Scipy Integration array

I am trying to write a program that does the following: Takes values of V from an array Passes the V values into an integral that is with respect to E Output integral results into an array I Plot I against V The equation looks quite nasty, but…
8765674
  • 1,234
  • 4
  • 17
  • 32
3
votes
1 answer

C# as user interface calling Prolog as reasoning module

I need to write a program using C# as user interface and getting input. Then after that, use Prolog to calculate the answer, and give back to C# to display. A school project :D Please advise on how to do this, any free API i can use ? I know C# but…
3
votes
1 answer

android library project manifest file

I am trying to integrate a todo app which is open source into my main app. I have made the todo app as a library project and integrated the manifest.xml as informed in the manual...but I am facing one issue. In my library project manifest file it…
user1013062
  • 79
  • 3
  • 7
3
votes
1 answer

Scipy integrate: is solve_ivp "always worse" than odeint?

Analytical solution for an example ODE I was testing the difference between these methods by solving the following initial value problem: y'=2*y-t You can solve this analytically by considering that y(t) is a linear combination of a homogeneous…
Breno
  • 748
  • 8
  • 18
1 2
3
30 31