Beantwortet
Is there known relationship between eigenvalues of covariance matrix and correlation matrix?
The documentation for <http://www.mathworks.com/help/techdoc/ref/corrcoef.html corrcoef> describes the relationship between the ...

mehr als 14 Jahre vor | 0

Beantwortet
Triple Integration without Symbolic Math Toolbox
The first thing you need to do is rewrite this as a <http://www.mathworks.com/help/techdoc/ref/function.html function> with the ...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
Multivariate Guassian Distribution
You're really trying to do two things here. The first is, you have some random data and you want to fit it to a multivariate nor...

mehr als 14 Jahre vor | 1

| akzeptiert

Beantwortet
PCA values
Eigenvectors are a little arbitrary. If |A| is a matrix and |b| is one of its eigenvectors, then so is |b| multiplied by any sca...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
Matrix Independance
You can use <http://www.mathworks.com/help/techdoc/ref/rank.html rank>.

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
purpose of a period in a var set/equation ?
With the dot, it indicates element-by-element multiplication instead of matrix multiplication. See <http://www.mathworks.com/hel...

mehr als 14 Jahre vor | 0

Beantwortet
Excessive Run Time For back solve of 'huge' symbolic matrices.
Do you really need the symbolic answer? It's probably very complicated, and not very edifying. You could create a function that ...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
Problem with 4-d integral i MatLab
You can insert a single integral as an argument in |triplequad|: zmin=-tau_m; zmax=tau_m; f1 = @(r,z1,z2) quadv(@(z) intgn...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
how to find t-score
If you mean the score on the t test, you can use <http://www.mathworks.com/help/toolbox/stats/ttest.html ttest>.

mehr als 14 Jahre vor | 0

Beantwortet
3d plot
See <http://www.mathworks.com/products/matlab/demos.html?file=/products/demos/shipping/matlab/demoDelaunayTri.html#3 Create and ...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
OOP in Matlab: Why can't methods access properties directly?
If I understand your problem correctly, you could make |SetOfPoints| into an object array, where each element ( _e.g.,_ |SetOfPo...

mehr als 14 Jahre vor | 1

| akzeptiert

Beantwortet
Connecting lines in 3-d Graph
If you want to combine (c,b,a) and (e,f,d) into a single line, you can do the following: x = [c; e]; y = [b; f]; z = [a; d]...

mehr als 14 Jahre vor | 0

Beantwortet
Data size mismatch..
The function |mle| expects |data| to be a vector. Use p = mle(data(:,2), ... instead of p = mle(data, ...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
converting yyyymmdd date to matlab date number
For each date, use a command like this: datestr(datenum('19940127','yyyymmdd'),'mm/dd/yyyy')

mehr als 14 Jahre vor | 3

| akzeptiert

Beantwortet
The curve in 3 dimensional space fitting.
You could fit a polynomial THRESHOLD(ALFA,BETA) using the File Exchange function <http://www.mathworks.com/matlabcentral/fileexc...

mehr als 14 Jahre vor | 0

Beantwortet
How to do curve fitting with two variables (using lsqcurvefit )
What you need is the <http://www.mathworks.com/help/toolbox/curvefit/sftool.html Surface fitting tool>.

mehr als 14 Jahre vor | 0

Beantwortet
The curve in 3 dimensional space fitting.
Let's back up a step. I think what you are trying to do is estimate the parameters of a generalized Pareto distribution for a si...

mehr als 14 Jahre vor | 1

Beantwortet
all simple paths problem
The package <http://www.mathworks.com/matlabcentral/fileexchange/24134 gaimc> implements the breadth-first search mentioned in y...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
Extracting a rotation axis from a rotation matrix
tol = 100*eps; i = find(abs(diag(D)-1)<tol); rotAxis = V(:,i); (Edited to take rounding error into account. Increase |tol...

mehr als 14 Jahre vor | 1

| akzeptiert

Beantwortet
Call superclass method without knowing name of superclass?
How about just wrapping the call in its own method? If you'll forgive a little Monty Python whimsy, suppose your overloaded meth...

mehr als 14 Jahre vor | 0

Beantwortet
Matlab with MacBook Air
Some follow-up thoughts: I think the most important comment that Walter made was "compared to what?" To which I would add, "For ...

mehr als 14 Jahre vor | 0

Beantwortet
Matlab with MacBook Air
Here are some benchmarks I obtained using <http://www.mathworks.com/matlabcentral/fileexchange/1836 bench>. Note that my Mac Boo...

mehr als 14 Jahre vor | 2

Beantwortet
Call superclass method without knowing name of superclass?
I can't think of a good way to use dynamic superclass names, and it sounds like bad programming practice to me. Here is a di...

mehr als 14 Jahre vor | 0

Beantwortet
Help with "find" (possibly inside of "eval"?)
Read <http://www.mit.edu/~pwb/cssm/matlab-faq_4.html#evalcell this FAQ>.

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
Direct Solver
You need to make your matrix explicitly sparse, using commands like <http://www.mathworks.com/help/techdoc/ref/sparse.html spars...

mehr als 14 Jahre vor | 0

Beantwortet
Creating 2d grid from cell array of data points
If your cell array is |c|, you could use x = cell2mat(c(:)); plot(x(:,1),x(:,2),'.') The colon operator in |c(:)| makes |c...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
Hatching a region between two functions
To fill the region between lines with a color, you could use a command like patch([x; flipud(x)],[f; flipud(g)],'r') The...

mehr als 14 Jahre vor | 1

| akzeptiert

Beantwortet
Fourier Transform of 2d
Unless there is an essential property of the centroid distance shape descriptor that you haven't mentioned, you could approach t...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
Plot 3d graphs of a 2D gaussian function
If the above data are copied into a file |2dGaussianData.dat|, the following code can give you the surface you want: A = im...

mehr als 14 Jahre vor | 1

| akzeptiert

Beantwortet
Intermediate variables value at the optimisation achievement
The newsgroup thread <http://www.mathworks.com/matlabcentral/newsreader/view_thread/125572 Intermediate results of Optimization>...

mehr als 14 Jahre vor | 0

Mehr laden