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

Python: integrate across 100 functions and integration variables

I want to compute an integral of the form: . I am struggling to implement this in python. Is there a programic way to accomplish this? I tried doing this with several for loops but I'm stuck on the error SystemError: too many statically nested…
kilojoules
  • 9,768
  • 18
  • 77
  • 149
0
votes
0 answers

GIT: automation to integrate commits between branches

My team has two GIT branches: 'main' branch which services our production environment 'update_1' branch which was forked out of main branch The idea is that 'main' is our current production branch. We only allow small bug fixes to be added to this…
Hampton Terry
  • 344
  • 1
  • 13
0
votes
0 answers

Using AngularJS 2 in Spring MVC 4.0.0 RELEASE

Has someone experiences integrate AngularJS 2 in Spring MVC? What libraries you add to your web-app? How we can run Typescript in Spring? Project's structure? I tried to find from here but nothing found can help me. Basically i've finished building…
Thịnh Kều
  • 163
  • 1
  • 1
  • 17
0
votes
1 answer

auto accept or disable the pop up for cookie

I create a website wich one include articles integration and I have a problem with the pop up about cookies as a visitor, on my page the pop appear ont the article and hide almost all of it. Is it possible to auto-accept or disable that? P.S: bottom…
0
votes
1 answer

How to have an arbitrary precision and integrate with scipy in python?

I would like to integrate this: import numpy as np from scipy.integrate import tplquad def f(y,x,z): return 2*np.sin(z)*np.cos(np.arctan((2*np.cos(y)-0.5+x)/(2*np.sin(y)))) tplquad(f,0,np.pi/2, lambda z: 0, lambda z:1, lambda z, x: 0, lambda…
0
votes
1 answer

Matlab integration and variable

Hello and thanks for reading this: This question is regarding Matlab: I need integrate this expression of two variables w1=subs(diff(K,Y1),{Y1,Y2},{0.2,0.3}) where K is defined as a handle function: K=@(X1,X2,Y1,Y2)... so w1 is a ''function'' of…
Benigno
  • 3
  • 2
0
votes
1 answer

store function values for future integration

I have a function H(t) returning a float. I then want to numerically compute several integrals involving this function. However, one of the integrals basically invokes the previous integral, e.g. from scipy.integrate import quad def H(t): …
Shinja
  • 125
  • 5
0
votes
0 answers

Numerical integration of a function containing nonparametric pdf and CDF

I'm trying to integrate the following function: t * ( ( 1 - F(t) )^( ( 1 - .75* b ) / (.75 * a ) ) ) * f(t) in a finite interval between the realization of the random variable X and its upperbound. F(x) is a CDF while f(x) is a pdf. Both F(x) and…
Andrew
  • 678
  • 2
  • 9
  • 19
0
votes
1 answer

integrating a function

this is the follow-up to my question about getting a div's content. the second function is the one im having a hard time with. im pretty sure i can call a function from another one, but im not sure about placing them into oneanother like i did here.…
crashtest
  • 89
  • 2
  • 8
0
votes
1 answer

Integrate after Backout even files are identical

I have two branches (A and B). I changed several files in A and made a backout. When I integrate A to B also these files appear, even nothing has changed (besides files with real changes). How can I avoid that? B is the main branch for several other…
HelloWorld
  • 2,392
  • 3
  • 31
  • 68
0
votes
1 answer

Strange behavior of 'integrate' function

The following code is to calculate the expectation of a random variable of logit-normal distribution with parameters mu and sigma (mu is mu, and lsig is the logarithm of sigma). fun5 = function(y,mu=mu0,lsig=lsig0) { res = exp(y)/(1+exp(y)) *…
user67275
  • 1
  • 9
  • 38
  • 64
0
votes
0 answers

Integrate over groups of variables

I am trying to integrate a quadratic linear function for each individual within my study system. I have already fit a lm for each individual and calculated the intercept, linear coefficient and quadratic coefficient so my data set looks something…
ck982
  • 1
  • 2
0
votes
1 answer

The "integrate" function in R gives erroneous results

I would like to integrate the function M2_11 (as follows) over x, for fixed theta = c(2,0.8), c = 1.1, a=c(1,1), and A = matrix(c(1/0.8,0.03,0.03,2/0.8),nrow=2,ncol=2). M2_11 = function(x, theta, c, a, A){ return((score1(x,theta)-a[1])^2* (weight(x,…
Ye Tian
  • 353
  • 1
  • 2
  • 17
0
votes
1 answer

Integrate coupled differential equation in Python

I have the coupled ODE, but when i run this code i get this error: TypeError: 'float' object is not subscriptable The error occurs on the line^ return array([-si*p[0], Here is my code: from scipy.integrate import ode import matplotlib.pyplot as…
0
votes
0 answers

JAAS and Spring Integration

I have a Dynamic Web Project with JAAS, it has a LoginModule. Now, I have a ROLE and I give to it a privileges like this: PRIVILEGES
Joan Sanchez
  • 331
  • 3
  • 8