Réponse apportée
ranova with two within factors
datatable.Properties.VariableNames = {'pre_A','pre_B','post_A','post_B'}; % When you have more than one repeated-measures fac...

presque 7 ans il y a | 4

| A accepté

Réponse apportée
How to perform Welch ANOVA?
You have to download these functions from FileExchange--they are not built-ins. E.g. wanova

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Re-centering a t-skew distribution
I take it you want to find the values a,b for a linear transformation such that newScores = a + b*oldScores; Presumably you ca...

presque 7 ans il y a | 0

Réponse apportée
N-way ANOVA wrong results
Both of the MATLAB output tables make sense to me, but I don't really know what SPSS is doing. For the MATLAB continuous case, ...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
N-way ANOVA wrong results
The SPSS output does not match up with the data that you posted, so maybe you should check that analysis first. For your connec...

presque 7 ans il y a | 0

Réponse apportée
How to fit a curve above/below another one?
> I am afraid you posted the answer as a comment. Oops. Let this be the follow-up to the above as an answer. >do you have a ...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
Histogram fitting best distribution
If you haven't tried it already, maybe tell distfit to use the 'kernel' option.

presque 7 ans il y a | 0

| A accepté

Réponse apportée
How to shuffle with replacement every n values of a given dataset into 1000 new sequences
It might be easier to reshape your matrix so you don't have to worry so much about index bookkeeping. E.g. Seq = 1:5000; Incre...

presque 7 ans il y a | 0

Réponse apportée
How to obtain exponential equation parameter from probplot function?
For a standard exponential distribution, probability = 1 - exp(-lambda*x) where x is the data value and lambda is the paramete...

presque 7 ans il y a | 1

Réponse apportée
Crop a normal distribution to a predefined uniform distribution
Maybe: Choose an interval randomly (e.g., the middle distribution in your original figure seems to have about 14 intervals rang...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
How to display text in the command window?
if abs(a-b)<0.0001 disp('LHS==RHS') end

presque 7 ans il y a | 1

| A accepté

Réponse apportée
Estimating a regression model using matlab
g=randn(1000,1); error=randn(1000,1); % Model: g(2:end)=k1+ k2*(g(1:end-1)-k1) + error(2:end)*k3 ; y = g(2:end); x1 = g(...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Comparing table values using IF statements
Change if uRiDdD(k,1) == allContacts(i,1) to if uRiDdD{k,1} == allContacts{i,1}

presque 7 ans il y a | 1

Réponse apportée
How do I extract elements from a table according to specific conditions?
I think if you want to select rows then the colon operator is in the wrong place, and that you would want something like T1(str...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Skew Normal and Owen's T function
Here is an updated link: http://people.sc.fsu.edu/~jburkardt/m_src/asa005/tfn.m

presque 7 ans il y a | 0

A soumis


BudgetCluster
Routines for running many tasks in parallel across several computers---essentially a low-budget, low-hassle substitute for a clu...

environ 7 ans il y a | 1 téléchargement |

0.0 / 5

Réponse apportée
How to calculate the skewness and kurtosis from MATLAB gaussian mixture model function---fitgmdist ?
The gaussians in the mixture have different means and sigmas, but since they are gaussians they all have the same skewness (0) a...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
linear fit with fitlm or regress
Your three variables are y, temp, and sigma? If I understand the model you want to fit, you might get a cleaner picture if you ...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Randomly dividing an integer (non-uniform distribution)
There are any number of ways to do that, depending on exactly what you mean by "considerably". Here are a few: %% Transform th...

environ 7 ans il y a | 1

| A accepté

Réponse apportée
How to minimize this function
If the problem is to find good starting parameter values, then maybe you could start with a grid search over your parameter spac...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
Presenting random images from a file, where each image is presented only once?
Store a random sequence of the images in advance and then cycle through them one by one. Something like this, emotionalImageDi...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
How to find parameter of function using MLE method?
It looks like you have defined DGDpdf as having a single argument, the vector phat. But when you call DGDpdf within Llikef, you...

environ 7 ans il y a | 0

Réponse apportée
Proving CLT using real data
I'm not sure exactly what you would accept as proving CLT, but you find this helpful: X_bar = bootstrp(1000,@mean,Data); histo...

environ 7 ans il y a | 0

Réponse apportée
Fit Lognormal function on already generated bins
Cupid has a command called EstChiSq that will do this. See https://github.com/milleratotago/Cupid

environ 7 ans il y a | 0

Réponse apportée
How can I separate a bimodal distribution into two normal distributions?
GMModel = fitgmdist(x,2); % Your data are in x

environ 7 ans il y a | 0

Réponse apportée
Passing variable names to batch script
Try system(['batchfile.bat ', Variable1, ' ', Variable2])

environ 7 ans il y a | 1

Réponse apportée
distribution of function of random variables
In principle you can do this numerically for many distributions f1,f2,f3, and many functions F with the routines in Cupid at htt...

environ 7 ans il y a | 0

Réponse apportée
Create a simple table from using data from other table and an Iteration loop
If you are really using the table datatype (as the error message suggests), then you are not indexing it properly. A table has ...

environ 7 ans il y a | 0

| A accepté

Réponse apportée
How do you verify and show independence/dependence of a pair of uniform random variables?
The math isn't showing up well in my browser so I don't entirely understand the question. But the general approach would be to ...

environ 7 ans il y a | 0

Réponse apportée
anova1 to test difference accross values of elements in a row in a matrix, for the columns seperately (seperate anova1 test per column in a matrix)?
You can't statistically compare the values in different rows (e.g., 0.0075 versus 0.3143) using just the averages. The statisti...

environ 7 ans il y a | 0

| A accepté

Charger plus