回答済み
Dimensions Reduction in Matlab using PCA
The first component explains most of the variation in the columns of DATA, but Y is not involved in that. Of course I don't unde...

8年以上 前 | 1

| 採用済み

回答済み
PDF (Probability Density Function) of a 2D matrix of values
If you have your data in the matrix M and you want to ignore the zeros and the relative locations of the values, you could try ...

8年以上 前 | 1

| 採用済み

回答済み
How to fit a general-linear mixed-effects model with categorical variables?
Try data_nr_acquisitions.problem_type = categorical(data_nr_acquisitions.problem_type) before you do the fit.

8年以上 前 | 0

| 採用済み

回答済み
What is exactly the kmeans ++ algorithm? How do you actually go about implementing it?
First off, if you look inside kmeans.m you should find an implementation of this. I'm hoping this is the kind of information ...

8年以上 前 | 0

回答済み
What is "Adjusted Resonse"
The adjusted response function isn't a diagnostic plot like an added variable plot, where you try to investigate or isolate the ...

8年以上 前 | 0

回答済み
Using every level of a categorical array in a regression
You could try using the DUMMYVAR function to generate indicator variables for each of your categories, then omit the constant te...

8年以上 前 | 0

回答済み
factoran() vs EM Algorithm FA = fa() : Understanding the difference on carbig.mat in ...toolbox\stats\statsdemos
It sounds like you want the fifth output of factoran rather than the first.

8年以上 前 | 0

| 採用済み

回答済み
Rearrange DoE main effects plot
I can't think of an easy way to make the plots have a different arrangement. I'm guessing you are using rstool, is that right...

9年弱 前 | 0

回答済み
Confusion Matrix of cross validation of an ECOC SVM classifier
The confusion matrix is one measure of classifier accuracy. You should supply the confmat function with the known labels and the...

9年弱 前 | 0

回答済み
query on command "silhouette(X,clust)"
Normally if you a clustering an N-by-P matrix, CLUST will be a vector of length N that will be 1 for the points in the first clu...

9年弱 前 | 0

回答済み
Error when evaluating clusters of a dataset
It looks like your next-to-last column, which has cluster numbers up to 9, is missing cluster 6 so it only has 8 clusters. I bel...

9年弱 前 | 1

| 採用済み

回答済み
boxplot vs column of strings
The simplest way to do this would depend on how you have your data stored now. For example, do you already have it as a column o...

約9年 前 | 0

回答済み
Modifying the Parameter Estimation Method of wblfit Function
I think you should not modify wblfit, but just do it directly or write a separate function. Here's an example of how to do what ...

約9年 前 | 0

回答済み
Calculating statistical PDF and percentiles over matrices
I'm not sure this is what you want, but: a = peaks % 49x49 matrix b = bsxfun(@plus,a,5*ra...

約9年 前 | 0

回答済み
Why kNNsearch and kNNclassify don't give the same result??
As I understand this, knnclassify returns a classification so result is a value from label_matrix. knnsearch just searches fo...

約9年 前 | 0

回答済み
How to calculate posterior probability?
Try "help gmdistribution/gmdistribution" for a function that can create an object representing this mixture distribution. There ...

約9年 前 | 0

回答済み
Why am I getting redundant legend (group) icon colors when utilizing the gscatter command?
The gscatter function as a separate legend entry for each group. Your group, as given by the Legend_Nomenclature variable, is th...

約9年 前 | 0

| 採用済み

回答済み
Is there a way to specify a constant using the fit() function?
The answer you got is correct, so here's how you might do it: % Get some data x = sort(10*rand(100,1)); y = 0 + 1*cos...

約9年 前 | 0

回答済み
How to estimate the constant term in a multiple linear regression?
You write "X=a+bY+BZ" suggesting that X may be a response and Y and Z predictors. But the first input to mvregress is the predic...

約9年 前 | 0

回答済み
Simulating dependent normally distributed variables using copulas
Consider formatting your question so the code is not wrapped into the text. The syntax |ksdensity(x,xx)| computes a kernel de...

9年以上 前 | 0

回答済み
Quasi random numbers in high dimension
The link gives ambiguous advice. The text suggests using P-1 even though the example uses P. If I try 4860, things look okay.

9年以上 前 | 0

回答済み
Is there a bug in Multidimensional Input to mhsample?
It looks like there's something that could be improved. The error message was no help. I think you want to specify a multivariat...

9年以上 前 | 0

回答済み
Comparing Two Empirical CDFs
The kstest2 function can work with two samples, using their two empirical CDFs.

9年以上 前 | 0

回答済み
Decision Boundaries for kmeans clusters.
You probably didn't mean to define 1200 distinct labels. You probably didn't mean to pass into classify a first argument wit...

9年以上 前 | 0

回答済み
How to define categorical within factors in fitrm?
When you create within_fact, you are defining a matrix with categories from 1 up to max(nr_cond, nr_sessions). So both columns o...

9年以上 前 | 2

| 採用済み

回答済み
I need to identify the diffetent outputs of confusionmat
The matrix is the count of actual and predicted values for each class. You can use the second output to get the class names. For...

9年以上 前 | 1

回答済み
where is the pvalue of the model stored in fitlm or fitglm?
Try this: load hald lm = fitlm(ingredients,heat) lm.Coefficients.pValue(1)

9年以上 前 | 4

回答済み
Gaussian mixture model sometimes seems to fit very badly
Hi cyclist, the default starting values are selected from the data at random, and you have discovered that this sometimes does n...

9年以上 前 | 1

| 採用済み

回答済み
How to avoid negative intermediate guess in nlmefit
If a parameter P needs to be positive, sometimes people will instead estimate a parameter logP and then use exp(logP) in place o...

9年以上 前 | 0

| 採用済み

回答済み
Import Custom Distributions programmatically
This command shows the distributions that are available: >> makedist ans = 'beta' ... 'wei...

9年以上 前 | 0

さらに読み込む