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
1
vote
2 answers

Explorer Panel in Java

does anyone know a free windows explorer type of project written in java? Basically i just want to implement a simple windows explorer but dont want to start from scratch with all the drag and drops, icon arrangements and so on. Thanks
peshkatari
  • 151
  • 3
  • 15
1
vote
0 answers

How can I implement PEPPOL in my project and please tell me step by step

How can I implement PEPPOL in my project and please tell me step by step. How can I implement PEPPOL(E-Invoicing) in my project and please tell me step by step.
Ad Singh
  • 11
  • 3
1
vote
1 answer

How to solve integrating an equation by python

I am trying to integrate an equation by python. However, I don't understand why the integration doesn't run. The equation I want to integrate is: Having: , to find having and , with . I am doing this procedure: from sympy import…
dove
  • 37
  • 6
1
vote
1 answer

can we integrate a processing gui with moodle?

i made a gui recently where the goal was to view the results of some actions there , so mostly it was like a simulation game that has no connection with any hardware , i proposed this for my school that uses moodle and i want to know if there is a…
ikhlasse
  • 15
  • 4
1
vote
1 answer

I need to integrate two sites, what's the best way to carry over login information?

So, I have two sites, sites A and B. I need to make B part of A. I did this by adding a module to A, and within that module, an iframe that contained a link to B. So, effectively speaking, B can still be accessed as a standalone site, but it can…
zermy
  • 611
  • 1
  • 11
  • 25
1
vote
1 answer

Solve improper double integral using integrate and uniroot functions

We have a function. t ~ Weibull(alpha, lambda) and c ~ Exponential(beta): Given p = 0.10, alpha = 1, lambda = 4. Find the value of beta. We want to integrate this function for t then to c. Then find the value of beta where integral equals to p…
1
vote
1 answer

Integrating Nuxt Js in Django "GET /_nuxt/bed9682.js HTTP/1.1" 404 2918

I am trying to integrate my Nuxt application inside Django. I have my Nuxt application and django application inside the same folder. I have set up the settings.py TEMPLATES = [ { 'BACKEND':…
z_code
  • 13
  • 2
1
vote
1 answer

Problem to integrate a function with multiple array in python

I work on a Python Script and I need to integrate a very long function. The function contains several array and I don't succeed to integrate it. I need to integrate it on teta1 (80,) but it contains also w (22,),f (22,),Gam_Mag (22,). I tryed to…
1
vote
1 answer

Integrate just a division of a page web

I have tried with Iframe but I can only display the whole web page. I would like to display only a part of the page, a subdivision or even just a value of the page. Thanks for your help ;)
ISEVEN
  • 23
  • 3
1
vote
1 answer

How to integrate a function defined by an array

I constructed and plotted a function defined by an array, according to the following code: # set parameters mean = np.array([0, 3]) sigma = np.array([1, .8]) weight = np.array([.4, .6]) factor = 4 points = 1000 # set limits for…
Andrew
  • 926
  • 2
  • 17
  • 24
1
vote
0 answers

How to integrate payoneer payment method using Laravel

I want to integrate the payoneer payment gateway into my site. I'm new to this API so I need help here.
smokey
  • 11
  • 3
1
vote
1 answer

How to integrate app with facebook?

I made a quiz app using wordpress using a quiz plugin so that, the work could be done easily. I do not have any knowledge about how to integrate that app that I've made with facebook. Right now I've just kept the app on my localhost. Do I need to…
Vatsal Juneja
  • 339
  • 2
  • 5
  • 19
1
vote
1 answer

Google Sheet integration in Express JS

How can I create a feature in Express JS where users can authorize their Google account with our app. So, we can fetch the google sheet from their accounts and show it in my express app, and if users do something on the spreadsheet on my app, it…
1
vote
0 answers

How do I create a dataframe with columns for cumulative area under the curve and time using python scipy.integrate.cumtrapz?

I'm a beginner in python and trying to find the area under a curve that is created by a data set rather than defined by a function. I currently have a dataframe with data in some columns (series) and corresponding days elapsed values in another…
Sofia
  • 31
  • 2
1
vote
1 answer

How to limit number of function calls in scipy.integrate.quad?

Scipy.integrate.quad() seems to make too many function calls in come cases. Here is a simple test to demonstrate: import numpy as np from scipy import integrate def intgnd(x): p = x + x**2 return…