Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
195 views

Why can't Mathematica solve this definite integral?

When I try to calculate the following integral in Mathematica 8, I get this strange result: In[1]:= Integrate[y/((1 + x^2 + y^2)^(3/2)), {y, 0, 1}] Maple 14 can solve this one easily: Why is ...
4
votes
9answers
515 views

What does 'Conditional expressions can be only boolean, not integral.' mean?

What does 'Conditional expressions can be only boolean, not integral.' mean? I do not know Java and I know C++ deffenetly not enought to understend what it means.. Please help (found in ...
4
votes
7answers
6k views

Best way to write a Python function that integrates a gaussian?

In attempting to use scipy's quad method to integrate a gaussian (lets say there's a gaussian method named gauss), I was having problems passing needed parameters to gauss and leaving quad to do the ...
3
votes
2answers
114 views

calculating double integrals in R quickly

I'm looking for a solution for a double integral that is faster than integrate(function(y) { sapply(y, function(y) { integrate(function(x) myfun(x,y), llim, ulim)$value }) }, llim, ...
3
votes
1answer
128 views

Output integral to ostringstream as binary?

I just realized that one can use bitset to output binary data to a stream based on the (fixed) size of the bitset. What's the least-extra-syntax way to output binary data to a stream using integrals? ...
2
votes
3answers
304 views

Python (SymPy, SciPy), create symbol lamda from string

I've struggling to take text inputs of an equation and evaluate it as a definite integral. I need a callable function to pass to scipy.integrate. eq = "x**2" func = lambda x: eq func(2) # outputs: ...
2
votes
2answers
139 views

C# integral types inconsistency

I just started reading up on the C# language, and one of the first sections in my reading material is, naturally, variables and types. In short order I came across the integral types table, which ...
1
vote
2answers
45 views

Initialise static const, non-integral, class member with a private member

Im am attempting to initialise a static const non-integral. However it requires parameters which are private. If it was of integral type you could place it in the class body and allow allow one ...
1
vote
2answers
54 views

Best method of calculating the integral of a function in PHP?

I am making a normal distribution calculator in PHP, but I can't figure out how to calculate the integral of a function using PHP. I've searched the web and stackoverflow, but I can't find anything ...
1
vote
1answer
75 views

Rectangle Method C++

I copied an example project from here, but I don't understand part of it: (i - 0.5). Why is (i - 0.5) being computed? double rectangle_integrate(double a, double b, int subintervals, double ...
1
vote
1answer
37 views

Calculate integral with less accuracy using Matlab

I want to calculate a double integral over a rectangular region (-pi/2, pi/2)x(-pi/2, pi/2). I used the int function: double(int(int(...))); The problem is that the running time was too long. But ...
1
vote
1answer
67 views

matlab quadrature

I'm trying to use MATLAB dblquad for such an equation: f(x,y)=\int_{0}^{1}(exp(-int_{0}^{y}f(x)dx))dy But it does not work. Is there any suitable MATLAB function for these type of double ...
1
vote
1answer
314 views

Python (sympy) TypeError: cannot concatenate 'str' and 'Add' objects

I'm trying to use an equation that I've generated using sympy.Eq(func, var) in a lambda. It seems to be returning a list of 'Add' objects, which I'm not sure how to use. I tried typecasting to astr ...
1
vote
0answers
1k views

How to use OpenCV integral image (summed area)?

I'm tring to use OpenCV 2.1's integral() function but cannot seem to get any decent result. I'm reading in an image and storing as a cv::Mat of type double and then passing this to the integral ...
1
vote
8answers
789 views

Min and Max value of integral type in C#

Whats the mathematical formulae to calculate the MIN and MAX value of an integral type using your calculator. I know you can use Integer.Max or Integer.Min etc or look it up on msdn however I want to ...
1
vote
2answers
414 views

LaTeX puts too much space next to integrals

Integrals with limits take up width horizontally that includes their limits. In other words, if you have an integral with large limits below (or above) the integral \int\limits_{-\infty < x < ...
1
vote
2answers
592 views

What's the most performant way to divide two integral values and obtain a floating point quotient in .NET?

Consider the following signature in C#: double Divide(int numerator, int denominator); Is there a performance difference between the following implementations? return (double)numerator / ...
0
votes
0answers
56 views

Bisdimensioal integral and choleski matrix factorisation

Starting from this: Cij2=zeros(3,3,Nx,Ny,Nz); [x y z]=ndgrid(1:Nx,1:Ny,1:Nz); k1=(x-Nx/2)*l/(Nx*delta)*twopi; k2=(y-Ny/2)*l/(Ny*delta)*twopi; k3=(z-Nz/2)*l/(Nz*delta)*twopi; ...
0
votes
2answers
110 views

Casting Integer to Int in Haskell [closed]

Possible Duplicate: Haskell Convert Integer to Int? I have a function to calculate a birthYear birthYear :: Int -> Int birthYear age = currentYear - age currentYear :: Integral -> ...
0
votes
0answers
130 views

Integral of a Recursive Function in MATLAB

I want to compute the following symbolic integral which is recursive : function [y] = myfunc(i,T) s = sym('s'); x= sym('x'); h=[....] %matrix n*n (function of x) d=[....] %matrix ...
0
votes
2answers
44 views

matlab quadrature in a loop

I'm trying to use matlab numerical integral functions,for example quad in a loop. But I also want to let matlab to calculate my integral for several integral limits: p=1; q=3; for k=1:5 a=0; ...
0
votes
1answer
96 views

MATLAB: Plot integral using quad/quadl

I would like to know if anybody knows how I can plot an integral calculated using quad/quadl, or if this is possible. I read that I can set the trace parameter to be non-zero, and this results in the ...
0
votes
1answer
160 views

Matlab Singularity

I am having trouble in evaluating the following double integral: Clearly the oscillating nature of the cos function is causing these issues. As I increase f and g to larger numbers, matlab complains ...
0
votes
0answers
93 views

math notations in objective C

I am trying to make my first iPhone app in science field. Specifically, I'm trying to be able to input math notations such as integrals. I managed to do the integral notation using the unicode, but am ...
0
votes
1answer
53 views

How can I integrate a function which needs to have a matrix calculation first?

I am doing my dissertation now. I stuck with a integral. My function is defined as myfun =(exp(t*Q)*V*x)(j); where Q and V are a matrix (n*n), x is a vector which elements are 1, then after ...
0
votes
0answers
183 views

Path integral in Matlab

I know that doing Feynman path Integral on Matlab is time consuming compare to Fortran or C. However, do someone have a Matlab code of harmonic oscillator via path integral? I didn't manage to find ...
0
votes
2answers
246 views

matlab function integral with few arguments

i wanted to ask how i can compute the following integral in matlab. integral(PN(x,m,s) , x(-Inf,Inf) ,m>0 ,s>0. I have created a function file pn which is : function PN = pn(x,m,s) PN=exp(-(x-m).^2 ...
0
votes
2answers
123 views

how do i insert inputs to find value of integrals in python?

I am working a physics coursework, and I am currently stuck at this section. I've trying but I couldn't get it right. Really need help here. Its about the trapezium rule, Question: What is the value ...
0
votes
0answers
79 views

Issue with Math [closed]

So I've got a issue with a math assignment, and I were hoping someone could at least point me to what I should be doing, because currently I'm just wasting my time, thats for sure. - Please don't ...
0
votes
1answer
305 views

Determining the input of a function given an output (Calculus involved)

My Calculus teacher gave us a program on to calculate the definite integrals of a given interval using the trapezoidal rule. I know that programmed functions take an input and produce an output as ...
0
votes
3answers
500 views

Algorithm for calculating definite integrals with bounds at infinity

Suppose I have an integral that's bounded on one (or both) end by (-)infinity. AFAICT, I can't analytically solve this problem, it takes brute force (e.g. using a Left Riemann Sum). I'm having ...
0
votes
2answers
877 views

C++ Integration Solution using Riemann Sum : Loses validity for greater than 10 partitions

In an effort to code the briefest solution I could for an approximation of the integral using Riemann sums, I ran into a strange problem: if the user requested a partition count in excess of 10, the ...
-3
votes
1answer
198 views

how to calculate integral with R

Here, I would like to have your helps on implementing calculation of integral on two vector. I checked pages on integral calculation relative to R. But, I have few training on mathematics, so I still ...