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
0
votes
2 answers

How to integrate the codes which instagram provides?

You know, instagram provides lots of codes for developers for example : https://api.instagram.com/v1/tags/snow/media/recent?access_token=ACCESS-TOKEN I have figured how to get access token out but How can I integrate those codes to fetch info from…
Metinable
  • 13
  • 4
0
votes
0 answers

Big integration error with integrate.nquad

Firstly, I integrate a simple function on an ellipse. Secondly, I integrate the same function to which I add a constant value. The results are not consistent as you can see on the bottom of my message. Thanks in advance for you help. # -*- coding:…
HDE
  • 11
  • 1
0
votes
1 answer

Converting a C++ library to a .so / .dll shared library

I am using the GRT library which is written in C++ and I want to integrate that with Java using JNA. To do that I want to make that a shared library (.dll/.so) . But I have no idea, how to do this. Here is the link to GRT library.…
kinath_ru
  • 4,488
  • 3
  • 21
  • 26
0
votes
0 answers

Vectorizing a function so to use Integrate in R

I'm building the pdf of a random variable and, in order to do so, I need to compute the integral of a function. The pdf looks like the following where I have intentionally separated the exponentials so to make it easier to read and distinguish the…
g_puffo
  • 613
  • 3
  • 11
  • 21
0
votes
0 answers

How to calculate a integration of a self-definite function in R?

I intend to calculate the variance of a method however the expression is quite a mess. In order to calculate this, I used the most inefficient way. I defined a function "a" which is a<-function(x){ …
0
votes
1 answer

Double integral with inconsistent results compared to wolfram

After solving many issues with the below integral, I still need some help to get to a proper solution. I tried to reduce the complexity as much as possible, thanks for your help. Lets take this example: b <- function(t) { # variable upper bound …
Valegard234
  • 45
  • 1
  • 7
0
votes
3 answers

Divergent Integral in R is solvable in Wolfram

I know that I asked the same question before, but as I am pretty new here the question was asked poorly and not reproducible. Therefore I try to do it better here. (If I only edit the old one probably nobody will read it) I have this double integral…
Valegard234
  • 45
  • 1
  • 7
0
votes
1 answer

min function in upper boundarie of an integral

My goal is to integrate the following double integral in R: Here is the doubleintegral I dont know how to implement the upper bound in R. (min(0,t)) The way I calculatet the integral is: library('cubature') adaptIntegrate(doubleintegralfunction,…
Valegard234
  • 45
  • 1
  • 7
0
votes
1 answer

Android: How to create graphs, tried using a library and ended up with a headache

I was wondering what the easiest way is to display a simple graph of any sort based on values that I already have. I tried using a library but ended up with more errors than i can count. What is the trick to using libraries and can someone take a…
user3924167
  • 61
  • 1
  • 7
0
votes
1 answer

How can i integrate/sync/link/connect SHAREPOINT to TFS(Visual studio) and vice versa

i need help on how to integrate sharepoint with tfs Senario: when i change the task info in sharepoint, i want it to automatically update in tfs and vice-versa. thank you!
0
votes
1 answer

free/changing variables in integrate

I am triing to integrate the following function accrding to h: FUNCTION: integralpos <- function(h){ (h)^(m-1)*exp(-x[4]*h-(r[v]-h-x[5]*x[3] + 0.5*(x[6]^2)*x[3])^2/ (2*x[6]^2*x[3]))} CALL: integrate(integralneg, -Inf, 0,…
Valegard234
  • 45
  • 1
  • 7
0
votes
0 answers

R integrate: view vector argument

Is there a way to see the vector R assigns with the integrate function to evaluate the integrand? That is, integrate is of the form: integrate(f, lower, upper, ...) where function f must act on some vector, say x. That is, f <- function(x, ...) {…
Adam
  • 997
  • 2
  • 12
  • 21
0
votes
1 answer

How can I embed and customize an RSS feed on my website?

So basically, I want to display a few blog posts from particular websites on my website (with due credit of course). I tired searching on Google, and I came across a few sites (like http://feed.mikle.com/) that make this possible, but they are…
Shubham Kanodia
  • 6,036
  • 3
  • 32
  • 46
0
votes
1 answer

Integrating with SciPy when variables of a function are arrays

I am a Python newbie trying to learn scientific computing, hence some help would be appreciated with this matter. What I am trying to do is to integrate a function when 4 variables take values from given arrays. It works well when only 1 variable is…
0
votes
1 answer

matlab calculating delta between plotted lines

I am producing this graph (reduced code version) : k = 1000 r = [100 220 470 1*k 2200 4700 10*k 22*k 47*k 100*k 220*k 470*k 1000*k ] unModNB = [0.72 0.746 0.801 0.92 1.16 1.69 2.78 4.6 6.45 9.1 11.2 12.4 13.2] unModWB = [1.124 1.17 1.23 1.48 1.84…