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

how to integrate of a function with multiple parameters w.r.t one of them in R?

I have a 2 variable function in R which I want to integrate w.r.t one of them and then optimize it w.r.t the other one. How can I do this?
Hamz Don
  • 1
  • 1
-1
votes
1 answer

How do I integrate events created on eventbrite.com to automatically update to my personal website?

I want to create events on eventbrite.com and have my website automatically update it's upcoming events list with any event I've created on eventbrite without having to go in and add in the events or widget pages into my website. Is this possible?…
saikohcoder
  • 11
  • 1
  • 2
-1
votes
1 answer

Error in match.fun(f) : argument "term1" is missing, with no default

Having trouble setting up these integral terms in R. I created "term1" to more easily insert it into the integral code, but I keep getting various error messages after trying different codes. any help or spotting the issue would be appreciated. ##…
-1
votes
2 answers

'non-finite' function value error in 'integrate' function in R

I defined a function called 'fun5' as follows: function(y,mu=mu0,lsig=lsig0) { res = exp(y)/(1+exp(y)) * 1/sqrt(2*pi)/exp(lsig) * exp(-(y-mu)^2/2/exp(lsig)^2) return(res) , then integrated the function from negative infinity to positive…
user67275
  • 1
  • 9
  • 38
  • 64
-1
votes
1 answer

How to Joomla login form integrate in html site

I create website in html and also develop a chatting site in joomsocial community using joomla in same domain.but i dnt no how to integrate joomsocial login form in html page.Plz help me.
prakasam
  • 253
  • 1
  • 3
  • 12
-1
votes
1 answer

Integrate urban airship using Eclipse

I have an application want to integrate Urban Airship to push notification. I dont use Android Studio, but I cant find any tutorial about integrate Urban Airship with Eclipse. Anyone can help me? THank you.
-1
votes
1 answer

Integrate Python and his libraries with Java

I integrate Python and Java with Jython but I need some libraries(pandas, numpy, skfuzzy, matplotlib, sklearn, pickle) but Jython can't support some of them. Is it possible import that libraries from Jython or exist other Framework, language,…
-1
votes
1 answer

tplquad: TypeError: 'float' object is not callable

I am trying to run this code but I get the error in the title. I looked for the documentation and examples about tplquad, but I couldn't understand my problem. Thank you very much in advance! here my code: from numpy import * from pylab import…
cgastald
  • 13
  • 4
-1
votes
2 answers

how to integrate speech recognition with my app

I want to integrate speech recognition in my app. for example: when user say specific word i put it in code like "hello" it will capture a picture from my app. I tried many code put about speech recognition but can't integrate it with my app how…
se7s
  • 1
  • 1
-1
votes
1 answer

Using BaseHTTPServer as server and integrating another language in

Is it possible to use Python to make a server and use another coding language to create a client side program? I'm using Director 8.5/10 (Made by Adobe, much similar to FlashPlayer) and the server on this scripting language is quite bad. I'm mainly…
-2
votes
1 answer

Extracting two lists from multiple lists with different size?

Considering the following 4 lists: x_name=[’02-2014’,’03-2014’,’05-2014’,’01-2016’,’03-2016’] x_value=[5,7,10,5,8] z_name=[’02-2014’,’03-2014’,’04-2014’,’05-2014’,’07-2014’,’01- 2016’,’02-2016’,’03-2016’] …
Spedo
  • 355
  • 3
  • 13
-2
votes
1 answer

Integrating a function to get a function

I have a function which takes a dictionary and returns an acceleration a. I put a list of data for a certain parameter (lets call it alpha) in that dictionary, and the function returned an array of 100 results(in respect to alpha). Now I want to…
Beginner
  • 11
  • 3
-2
votes
1 answer

Matlab Coding - Energy in Capacitor

really struggling to get a script for the energy in a capacitor. Using the formula: v(t) = (1/c)*int(i(t)) dt The script need to be able to accept arrays i.e. t = 0,1,2,3,4 i = 2,3,5,5,8 Where C is a fixed value for example, I'm sure this is very…
-4
votes
1 answer

Integrate Word Online Editor in my website

As the title said, I would like to integrate the Word Online Editor (you need an office account) in my website to facilitate the document editing for my users. Is there a way to do it ? I've been looking left and right but couldn't find a way, only…
-6
votes
1 answer

Solving a differential equation in python with odeint

I am trying to solve that differential equation R·(dq/dt)+(q/C)=Vi·sin(w·t), so i have the this code: import numpy as np from numpy import * import matplotlib.pyplot as plt from math import pi, sin from scipy.integrate import odeint C=10e-9 R=1000…
1 2 3
30
31