回答済み
Not enough input arguments.
I try not to do too many homework problems here because in a former life I was a college professor, and I think it's bad for the...

約10年 前 | 3

| 採用済み

回答済み
why I receive message like this"Warning: Function ishermitian has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict" in Matlab 2014
MATLAB added a new built-in function called ishermitian in 2014a. Apparently you have one of your own on the path. Type "which...

約10年 前 | 2

| 採用済み

回答済み
Why Embedded coder generates include to standard C library (<stddef.h> and <string.h>)? How to remove theese includes?
I know next to nothing about it, but perhaps use the CRL (Code Replacement Library) to replace the standard memset with one that...

約10年 前 | 1

回答済み
integration of a multiple anonymous function
So if your function g works with a scalar value of c, then you need to vectorize it. You'll have the same problem if you do som...

約10年 前 | 2

| 採用済み

回答済み
INTEGRAL AT THE AREA
First define a function. This function must be able to accept an array and return an array. That is to say, if y1 = f(x1) and ...

約10年 前 | 2

| 採用済み

回答済み
avoid imaginary numbers in probabilistic calculation
You haven't told me how you got them, so I can't tell you how to avoid them. Most likely your calculations before calling expin...

約10年 前 | 1

回答済み
How to write a function and create 3 nested loop then evaluate an integral?
I'm not sure if there is supposed to be a relationship between the t intervals and rho, or whether the fact that there are 15 ro...

約10年 前 | 1

| 採用済み

回答済み
Integration numerical with variable limits
The INTEGRAL2 interface is set up to calculate an iterated integral where the integral over the second argument of the integrand...

約10年 前 | 3

| 採用済み

回答済み
"lsqnonlin" constantly stopped for failing to integrate numerically
Is it possible that your problem is singular or highly oscillatory inside the interval of integration for some parameter values?...

約10年 前 | 2

回答済み
calculating the integral with dummy variables
A "dummy" variable is a variable that is integrated out of the equation. All definite integrals use "dummy" variables in their ...

約10年 前 | 1

回答済み
How to determine order and time step size of ode15i
ODE15i is variable-step and variable-order, so "the" step size and "the" order used would each be sequences as long as the numbe...

約10年 前 | 1

回答済み
Error in quad function-maximum function count exceeded. "Singularity likely" warning when I use the QUADL function in MATLAB
Is there some important reason why you are using INTEGRAL, QUAD, and QUADL, all three? QUAD and QUADL are deprecated. Use INTE...

約10年 前 | 2

回答済み
ode45 failing to produce a sensible solution
I somewhat disagree with Jan's conception of the limitations of the code. They should be able to handle non-smoothness. Jump d...

約10年 前 | 2

回答済み
Matlab integration error: Integrand output size does not match the input size
When you see that error, it means that you used a / instead of ./ . The integrator passed in an array for "vectorized" element-...

約10年 前 | 1

回答済み
Help on double integral
ffull = @(k,theta,phi)cos(k.*sin(theta).*cos(phi)); qscalar = @(kscalar)integral2(@(theta,phi)ffull(kscalar,theta,phi),0,...

約10年 前 | 0

回答済み
Strange error using quad2d
I don't know when it will finish, but I made this adjustment to properly vectorize the Fw function (QUAD2D can't accept an array...

約10年 前 | 2

回答済み
problem with for and function inside other function
Do not use QUAD. Use INTEGRAL. If you don't have INTEGRAL because your version of MATLAB is too old, use QUADGK. Functions ...

約10年 前 | 0

| 採用済み

回答済み
how can I evaluate a four fold integral with four variables numerically ?
There's one thing that people often find difficult: the requirement that the integrand accepts arrays and returns arrays, opera...

約10年 前 | 1

| 採用済み

回答済み
Evaluate numerical Integral by generating function
This bl = @(ln1, ln2) bl+pro; is syntactically wrong. The operation + is not defined on function handles. You need to...

約10年 前 | 2

| 採用済み

回答済み
Help on User Defined Function
Sorry we missed this question. The problem is that colon expression lengths are tricky business in MATLAB because the end point...

約10年 前 | 0

回答済み
Multiple integrals with limits as variables
function_of_scalar_z_only = @(z)integral2(@(w,l)f(z,w,l),0,L,0,@(w)w); g = @(z)arrayfun(function_of_scalar_z_only,z); De...

約10年 前 | 0

| 採用済み

回答済み
Error in port widths or dimensions
OK, x is just a scalar. Now how about z, beta, xo, zo, k, x_ba, and z_ba? Assuming they are all scalars, when I run this code ...

約10年 前 | 0

| 採用済み

回答済み
Inf and NaN entities in C-code when using Matlab Coder
Ryan's comment is the answer to this question. The initialize function must be called.

約10年 前 | 0

| 採用済み

回答済み
solve in simulink using matlab function block
Keep in mind that extrinsic functions are calculated by calling out to MATLAB, and what comes back is an mxArray which can't be ...

約10年 前 | 1

| 採用済み

回答済み
Inconsistency using integral versus quad?
No, INTEGRAL is extremely reliable, much better than QUAD. Please provide me with a complete, running example that demonstrates...

約10年 前 | 0

| 採用済み

回答済み
ODE method issue in matlab
If the derivative odefun(t,y) depends on the four "control" functions of t (or even of both t and y), then these functions would...

10年以上 前 | 0

| 採用済み

回答済み
Integrate function that calls a function
Except when computing array-valued integrals, the INTEGRAL function requires that the integrand function be coded to accept _arr...

10年以上 前 | 1

| 採用済み

回答済み
integrate multivariable function with infinity bounds?
This is not how to compute a quadruple integral. See, for example, my answer here: http://www.mathworks.in/matlabcentral/ans...

10年以上 前 | 0

回答済み
Geting error while using quadgk for quadruple integral
If you want to integrate a function of 4 variables, f(theta1,theta2,w,z), try iterating it as a single integral of a triple inte...

10年以上 前 | 1

| 採用済み

回答済み
normrnd, normpdf, pdf not working for code generation
If you're using 2013a or earlier, they aren't supported. If you're using 2013b or later, they are supported. You'll need the o...

10年以上 前 | 0

| 採用済み

さらに読み込む