Questions tagged [indefinite]
34 questions
-1
votes
1 answer
How to perform indefinite integration of this function in MATLAB?
I need to perform the following operations as shown in the image. I need to calculate the value of function H for different inputs(x) using MATLAB.
I am giving the following command from Symbolic Math Toolbox
syms y t…

udit srivastava
- 7
- 7
-1
votes
1 answer
Mathematica Integrate gives back the integrand
i'm trying to Integrate the following function:
(q (1 + q) - E^-q Sinh[q])/(-q + Cosh[q] Sinh[q]) - (
2 q Tanh[q])/(-q + Cosh[q] Sinh[q])
I already solved it numerically but i really need the indefinite integral so used:
In[67]:= Integrate[(
…

SSC Napoli
- 131
- 1
- 5
-5
votes
3 answers
What output does the following for statement produce in C?
I anticipated it would produce:
10 5 3 2 1
but instead it prints
10 5 3 2 1 1 1 1 1 1 1 1 1...
Why?
#include
int main(void)
{
int i;
for(i = 10; i >= 1; i /= 2)
printf("%d ", i++);
return 0;
}
2 is printed, then…

user3646717
- 1,095
- 2
- 12
- 21