Risposto
Pass 'cfit' object into a new function
You appear to be assigning [] to both X and Y, then fitting to that. I wouldn't expect that to work. However, if you are succ...

oltre 11 anni fa | 0

Risposto
Anovan gives contradicting results
This is a balanced design, so the sum of squares explained by g1 is indeed the same in each case. But its F statistic and p-valu...

oltre 11 anni fa | 0

Risposto
How to fix a singular design matrix created by LinearModel during categorical interaction expansion?
When I try an example like this I see: Warning: Regression design matrix is rank deficient to within machine precision. ...

oltre 11 anni fa | 0

Risposto
What is 'cat' param used for in TreeBagger method
This means that column 6 of X is to be treated as categorical. Suppose it takes values 1,2,3. If X were continuous, splits would...

oltre 11 anni fa | 0

Risposto
fminsearch combining maximum likelihood and least squares
If you use this function, fminsearch will try to minimize the first output. You could wrap "yourfunction" in a second function a...

oltre 11 anni fa | 0

Risposto
dataset create categorical variables from existing variable
Start with this and see if it gets you anywhere: d = dataset; d.a = (ds=='a')

oltre 11 anni fa | 0

Risposto
how to compute a linear mixed effect using nlmefit?
It looks like nlmefit invokes your model function with betas as a row vector. Try this: model = @(Betas,X) (X*Betas(:))

oltre 11 anni fa | 0

| accettato

Risposto
Normalize histogram of normally distributed data
I would normalize it to area 1. The usual histogram has area equal to binwidth*sum(n), so divide by that. Probably binwidth=b(2)...

oltre 11 anni fa | 0

Risposto
MATLAB kmeans clustering vector space
A couple of things to look at. First, norm(m) where m is a matrix returns a scalar. You seem to want a vector. Second, in your l...

oltre 11 anni fa | 0

Risposto
How to implement cross validation with back propogation network
I am not a nnet expert, but I am under the impression that your inputs should have one column per observation (rather than one r...

oltre 11 anni fa | 0

| accettato

Risposto
Is it possible , to use NaiveBayes.fit prediction with crossvalind
The error comes from this: test(cp1,1) You're using cp1 to index into the logical vector test. I suspect you want someth...

oltre 11 anni fa | 0

| accettato

Risposto
varimax rotation of PCs
On reflection, if you are thinking of the eigenvalues as the variances of the scores, perhaps this is what you want after rotati...

oltre 11 anni fa | 0

| accettato

Risposto
Estimating initial values for nlinfit or lsqcurvefit
If you expand out your expression, you'll see that you have a polynomial up to x^3, so there are four coefficients including the...

oltre 11 anni fa | 0

| accettato

Risposto
Canonical Correlation Analysis - canoncorr function in matlab
Try comparing V with the product bsxfun(@minus,Y,mean(Y))*B The first factor is just Y with the column means subtracted....

oltre 11 anni fa | 0

Risposto
plot with grouping variables
I'm not clear what you mean by a "real" graph. If you want the points connected by lines, you can specify a linestyle after usin...

oltre 11 anni fa | 1

| accettato

Risposto
calcuating expected value from a joint distribution
You don't say what errors you get. You could get problems if you are in a region where y is near zero. Away from that region,...

oltre 11 anni fa | 0

Risposto
How can I draw Multivariate Scatter Plot?
You could use gscatter to plot two of them with coloring determined by the third. You could use plotmatrix or gplotmatrix to plo...

oltre 11 anni fa | 0

Risposto
LS Estimates aren't accurate
It looks like you are fitting an AR(160) model. Aside from that, I can't figure out what you're trying to do. You appear to b...

oltre 11 anni fa | 1

Risposto
generate a random number according to a probability distribution
Check out the datasample function, including its 'Weights' argument.

oltre 11 anni fa | 1

Risposto
K-means without iteration
Not sure I follow exactly, but you could use grpstats to compute the coordinatewise means of data for each distinct value of T. ...

oltre 11 anni fa | 0

| accettato

Risposto
Undefined function or variable "idxBest" in kmeans
This looks like a bug. I can see it has been fixed in the toolbox source code for distribution in an upcoming release. From what...

oltre 11 anni fa | 0

Risposto
LinearModel.fit - are the regression coefficient standardized?
I don't quite understand what you want. The coefficient estimates as shown are not standardized. The so-called "beta coefficient...

oltre 11 anni fa | 0

Risposto
Flexible number of paramters for MLE with custom function
Let's try it. The normpdf function uses the default sigma=1 if no standard deviation value is given. >> x = 1 + randn(100,1...

oltre 11 anni fa | 0

| accettato

Risposto
p-value returned by non-paraemtric test
Type "help kstest" and you may see (if your MATLAB is recent enough) that there's a 'Type' option to control whether it's one-ta...

oltre 11 anni fa | 0

| accettato

Risposto
Generating dataset from Gaussian Mixture Model
It's multivariate in the sense that it supports more than one dimension, but you can use it for a single dimension: g = gmd...

oltre 11 anni fa | 1

| accettato

Risposto
how to remove a bar from histogram which drawn using 'hist' function?
If you want to omit zeros from the bar calculations: hist(h(h~=0), 6) Depending on your data, this may omit the bar that...

oltre 11 anni fa | 1

| accettato

Risposto
The function nlinfit is not found
The nlinfit function is part of the Statistics Toolbox. Try typing "ver" to see if this toolbox is among the ones you have avail...

oltre 11 anni fa | 0

Risposto
mvtcdfqmc error when mvncdf used within fsolve
When I try this, it's because H becomes negative and so log(A_t./H) becomes complex. You may find it helpful to set a breakpo...

oltre 11 anni fa | 0

Risposto
error message in using mvnrnd function??
Using chol is a good idea, but chol does not actually check that the matrix is symmetric: >> a = [2 1;1 3] a = 2...

oltre 11 anni fa | 0

| accettato

Risposto
How can I find t-statistics for parameters a, b of a function f = 1 / (a.log(x)+b) using matlab?
Do you have a recent version of the Statistics Toolbox available? >> load census >> d = dataset(cdate,pop); >> nlm = ...

oltre 11 anni fa | 0

Carica altro