已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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. ...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

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

11 years 前 | 0

已回答
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(:))

11 years 前 | 0

| 已接受

已回答
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)...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

| 已接受

已回答
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....

11 years 前 | 0

已回答
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...

11 years 前 | 1

| 已接受

已回答
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,...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 1

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

11 years 前 | 1

已回答
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. ...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 1

| 已接受

已回答
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...

11 years 前 | 1

| 已接受

已回答
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...

12 years 前 | 0

已回答
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...

12 years 前 | 0

已回答
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...

12 years 前 | 0

| 已接受

已回答
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 = ...

12 years 前 | 0

加载更多