Beantwortet
Mann-Whitney-Wilcoxon test for matrices
Try this: <http://www.mathworks.com/matlabcentral/fileexchange/25830>

etwa 15 Jahre vor | 0

Beantwortet
solving nonlinear system of equations
Numerical solutions of nonlinear equations are often sensitive to the initial guess. You may not even be able to determine *how ...

etwa 15 Jahre vor | 1

| akzeptiert

Beantwortet
Strange result of symbolically solving cubic equation?
I don't know why this is happening. I tried the same equations in Maple and got the right answer both ways, so maybe it is a bug...

etwa 15 Jahre vor | 0

Beantwortet
Chroma Keyer
The inputs to scatter3 need to be vectors, not matrices. Try this: scatter3(r(:),g(:),b(:))

etwa 15 Jahre vor | 0

| akzeptiert

Beantwortet
count nonblank values
By blank, do you mean blank characters in a string S? If so, you could do this to count the nonblank characters: num_nonblank...

etwa 15 Jahre vor | 1

| akzeptiert

Beantwortet
Selecting words in MATLAB
If your goal is to search for a given string in a cell array, you can use *strcmp*.

etwa 15 Jahre vor | 1

Frage


Compensated summation in sum?
Does Matlab use some algorithm such as compensated summation to reduce the roundoff error in *sum*?

etwa 15 Jahre vor | 1 Antwort | 2

1

Antwort

Beantwortet
Can I loop on a specific element in an array?
I assume that by "cell" you mean "component of a vector". There are a lot of ways to do this, but one option would be conduct...

etwa 15 Jahre vor | 1

Beantwortet
How do I solve and plot a system of differential equations?
To solve the differential equation, you could use *ode45* or one of the other differential equation solvers (if you type "doc od...

etwa 15 Jahre vor | 0

Beantwortet
How do I tell which toolboxes my program uses?
You could do a dependency report for each folder that your code is in (from the menu in the Current Folder window). The toolboxe...

etwa 15 Jahre vor | 3

Beantwortet
Help with Mixed-Integer Linear Programming (MILP) problem
You could try this out: <http://www.mathworks.com/matlabcentral/fileexchange/6990-mixed-integer-lp>

etwa 15 Jahre vor | 0

Beantwortet
data space
The data space is a box determined by the upper and lower bounds in each dimension. In your example, it is defined by 60780...

etwa 15 Jahre vor | 0

| akzeptiert

Beantwortet
Checking file names
exist('data.xls','file')

etwa 15 Jahre vor | 0

Beantwortet
How to get more significant figures in Optimization solutions
I don't know how to change the display, but you could export the result using File > Export to Workspace and look at it with for...

etwa 15 Jahre vor | 0

| akzeptiert

Beantwortet
inverse 2d continous wavelet
You could try this package: <http://rhea.tele.ucl.ac.be/yawtb/>

etwa 15 Jahre vor | 0

Beantwortet
Where can find a tutorial/help for nntool?
Gil, try this link: <http://www.edaboard.com/thread108850.html>

etwa 15 Jahre vor | 0

Beantwortet
Code for Maximum Intensity Projection
Yes: <http://www.mathworks.com/matlabcentral/fileexchange/21993-viewer3d>

etwa 15 Jahre vor | 0

Beantwortet
Meshgrid
I assume that x and y have the same values as x1 and y1, but in a different order. You could do a search for each pair (x1,y1), ...

etwa 15 Jahre vor | 1

| akzeptiert

Beantwortet
Complex to Imaginary & Vice -Versa
You can't reverse the abs function. If the original phase is what you need, you could save the phase angle using P = angle(Y). T...

etwa 15 Jahre vor | 0

Beantwortet
Using a loop to create polyfit values for a matrix of numbers
You need to index Usable_Freq also, and polyfit returns two values for a first order fit. Try this: N = 11182; x = zeros(N,2)...

etwa 15 Jahre vor | 0

| akzeptiert

Beantwortet
Cumulative Contribution Contour Plot
Oscar, the real issue here is how to define the cdf for your function. Once you can calculate it, you can do a contour plot of i...

etwa 15 Jahre vor | 0

Beantwortet
How can I deal with a badly conditionned matrix when computing strain energy?
The specifics about strain are beside the point - it is a rounding problem. Take any badly-conditioned matrix and some complex v...

etwa 15 Jahre vor | 0

Beantwortet
Can I apply Linesmoothing 'on' to existing figure?
If you can get the handle for each object, you can enter: >> set(handle,'Linesmoothing','on') even thought get(handle) doesn...

etwa 15 Jahre vor | 1

| akzeptiert

Beantwortet
lsqlin Failure! Why is the simple example provided by MATLAB failing to execute?
I tried the example and it gave the warning but the outputs x, etc., were the same as in the example. "Optimization terminated" ...

etwa 15 Jahre vor | 1

| akzeptiert

Beantwortet
How do I draw an en dash in MATLAB using the TeX interpreter?
If you use the latex interpreter, it's really simple: plot(1:10); h1 = text(2,2,'Hy-phen','Interpreter','latex'); h1 = t...

etwa 15 Jahre vor | 3

Beantwortet
Cumulative Contribution Contour Plot
You seem to be trying to plot the multivariate normal cumulative distribution function. For that, just change mvnpdf to mvncdf. ...

etwa 15 Jahre vor | 1

Beantwortet
How can I edit cells with string values in a UITABLE?
The NaN may occur because the format for that column is numeric. That could be because you entered a numeric value for the prope...

etwa 15 Jahre vor | 0