Respondida
Why the p value is so small in mann-whitney test?
I think you use ranksum like this: [p, h, stats] = ranksum (A,B) With your command, it is testing whether the A & B scores are...

más de 5 años hace | 0

| aceptada

Respondida
How to generate random numbers with constraints and different boundaries (for a high dimension)?
I don't know if this will be any use to you, but here is a way to generate "random" scores that meets some of your criteria (i.e...

más de 5 años hace | 0

Respondida
systematic random sampling from excel file
Let's say you have 537 people in your excel file, numbered 1-537. You can use the command participants = randperm(537) to rand...

más de 5 años hace | 0

| aceptada

Respondida
Integrate kernel probability distribution function
If you just want to know the percentages in various ranges, it seems easier to tabulate the scores directly than to mess about w...

más de 5 años hace | 0

Respondida
How to find 'within group correlation'?
I would guess the idea is this: grp0 = t == 0; grp1 = t == 1; corr(x(grp0,:)) corr(x(grp1,:))

más de 5 años hace | 0

Respondida
matrix of random distribution
n = 8; % whatever n you want sd = 1; % whatever you want for the standard deviation of the normal distribution in ...

más de 5 años hace | 1

| aceptada

Respondida
generate random sample for linear regression
% First you have to define the characteristics of x1, x2, and e. % These can be any values you want, such as: mu1 = 0; % M...

más de 5 años hace | 1

| aceptada

Respondida
Detect collinear points in a 3d points cloud
This is going to be a pretty fuzzy suggestion: Maybe you can speed things up by temporarily throwing away precision. The idea i...

más de 5 años hace | 0

Respondida
How can I generate Conditional Lognormal distribution
Those mu and sigma values don't look right for lognormal distributions. These distributions have only positive values, so they ...

más de 5 años hace | 0

| aceptada

Respondida
log likelihood output from the distribution fitter app
Just be a bit careful here... I think those log likelihood values are likelihoods under the maximum likelihood parameter estima...

más de 5 años hace | 0

Respondida
Finding P-Values with the Null Hypothesis Being a Coefficient Equal to 0
The easiest way is with the corr function, because the p value for the slope is the same as the p value for the correlation coef...

más de 5 años hace | 0

Respondida
How do I set a seed to generate different random initial numbers and storing them
Maybe the FileExchange contribution RNGMgr will be helpful.

más de 5 años hace | 0

| aceptada

Respondida
How to accurately process an Anderson Darling test?
Looks to me like the same problem as in your previous question. MATLAB's 2-parameter Weibull starts from a minimum of 0, but Mi...

más de 5 años hace | 2

| aceptada

Respondida
Where is the coefficient for the reference condition when using 'fitlm' to perform ANOVA with intercept omitted?
Why not just use this? for iGrp=1:5 stderr = std(y(x==iGrp)) / sqrt( sum(x==iGrp) ) end

más de 5 años hace | 0

| aceptada

Respondida
How to solve for 3 parameters for a Weibull distribution
Here is what I get using Cupid: Build_Array_Final{1}=[214.42,214.99,215.35,215.98,221.08,222.54,214.78,215,215.32,215.75,217.06...

más de 5 años hace | 0

| aceptada

Respondida
How to find the minimum of the function?
fminsearch is a good place to start

más de 5 años hace | 0

Respondida
Distribution that works with positive and negative skewness
The skew normal is in Cupid. The last parameter controls the amount and direction of skew. E.g., posSkew = SkewNor(10,1,2); p...

más de 5 años hace | 0

| aceptada

Respondida
how can I do a double summation with dependent indices?
Sorry, I am having trouble relating your code to your equation, and I would have no idea how to do this with syms. But maybe go...

más de 5 años hace | 0

| aceptada

Respondida
Random samples from combination of poisson distributions
One easy way to generate a random score from a poisson mixture distribution is to randomly select the particular poisson first a...

más de 5 años hace | 0

| aceptada

Respondida
How can I calculate the 95% confidence interval for spearman correlation values?
I don't think there are formulas for that but you can estimate it with bootstrapping: mycorr = @(x1,x2) corr(x1,x2,'Type','Spea...

más de 5 años hace | 1

| aceptada

Respondida
Finding the t values of the Student's t test (t1-α,ν)
critt = tinv(1-alpha,v)

más de 5 años hace | 0

| aceptada

Respondida
Draw PDF and CDF of random values of distance from a 10X10 matrix
I'm guessing you want the empirical PDF and CDF functions (that will change slightly every time you rerun the code, due to rando...

más de 5 años hace | 0

Respondida
How to find 2d spearman and kendall correlations using corr2?
corr2 is doing the same computation as corr, except that it allows 2d inputs rather than 1d. So, you can get your Spearman or K...

más de 5 años hace | 0

| aceptada

Respondida
calculate empirical distribution function and interpolation
You want to use the regress function, something like this: X = [ones(size(temp) temp)]; % temp is a column vector of temperatu...

más de 5 años hace | 0

Respondida
How to find P value in chi2inv
Not sure what you are asking, but maybe p = chi2cdf(3.7920,df,'upper') where df is the degrees of freedom for your computed ch...

más de 5 años hace | 0

Respondida
Updating multiple variables randomly with a constraint in a while cycle
You might be able to do what you want with nested while loops, something like this. Pretty tedious though. x = zeros(6,1); st...

más de 5 años hace | 0

Respondida
How to test for a main effect of the between subjects-variable with fitrm and ranova?
% Define the within-Ss factor and give it a name. The 1 & 2 refer to Awake / Asleep WithinStructure = table([1 2]','VariableNa...

más de 5 años hace | 1

Respondida
fitgmdist for loop; nested for loop, combine array of different sizes
I don't really follow what you are trying to do, but maybe some of these comments will help a bit: I. Use a cell array to outpu...

más de 5 años hace | 1

| aceptada

Respondida
How do I fit multiple Gaussians to my data?
From the new graph you've posted, it looks like the values in AbsY are not the type of data expected by fitgmdist, and I suspect...

más de 5 años hace | 1

Respondida
How to compare appropriateness of fitted Weibull and lognormal models via the likelihood ratio test
Unfortunately the likelihood ratio test cannot be used this way. It is only for comparing nested models (i.e., one model has to...

más de 5 años hace | 0

| aceptada

Cargar más