Beantwortet
Obtain a random number from a truncated normal distribution
You seem to be asking for something like this: pretruncMean = 0.9; pretruncSD = 1; untruncated = makedist('Normal',pretruncMe...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Constrain regression coefficients to be equal
Make a new variable with IndependentSum = Independent1 + Independent2; and then fit the model with Dependent~IndependentSum

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How do I make a probability plot with data on the y axis and probability on the x axis?
Something like this: % some random data for an example nSample = 500; floodData = rand(nSample,1); % percentiles/probabili...

mehr als 5 Jahre vor | 0

Beantwortet
How to calculate random Correlation Pairs
Make a matrix A with one column for each voxel, and then use cormatrix = corrcoef(A) The output will be the correlations for a...

mehr als 5 Jahre vor | 0

Beantwortet
How to calculate a transformed distribution in Matlab?
Depending on the transformations you have in mind, you may be able to do what you want with Cupid. It's transformation distribu...

mehr als 5 Jahre vor | 1

Beantwortet
Chi square test: non parametric
It sounds like this is what you want: % Create some fake data to use as an example, % with 3 groups of different sizes; score...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
fitglme error says data is not full rank, but it is.
I'm guessing: (1) your ID column is a unique identifier rather than an actual numerical predictor value, and (2) you only have o...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How can i speed up my nested for loops ?
You can speed this up to some degree by rearranging the order of your for loops. For example, consider: d1 = floor((n1*x/c)...

mehr als 5 Jahre vor | 0

Beantwortet
mvncdf - invert sum direction
(1) There is no way to get mvncdf to be larger at (6,7) than at (6,13). (2) It might be useful to you to reconceptualize X2 as ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
y-axis meaning using a ksdensity plot
The y-axis is scaled such that the total area under the density is 1. (area = probability with continuous distributions.) Since ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to setup a Repeated Measurements. model and then perform a Manova
tbl = readtable("libro6.xlsx"); % Remove control group control = tbl.Exp_Group == 9; tbl(control,:) = []; % Define & fit...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Generate random sequence number with condition
Here is another distributional option with a figure showing the comparison to Bruno's: %% Bruno's solution P=interp1([0 0.9 1]...

mehr als 5 Jahre vor | 0

Beantwortet
count of times if condition is met
put hits = 0; before the 'for' loop. You are resetting hits to 0 each time you check a new ptarget

mehr als 5 Jahre vor | 0

Beantwortet
Using bootstrp with matrices to bootstrap cross-correlations using xcorr?
Bootstrapping involves taking random resamples of the existing data to create datasets of the same size, but it is not exactly w...

mehr als 5 Jahre vor | 0

Beantwortet
How to makedisk for a three parameter weibull distribution
MATLAB's Weibull distribution only allows 2 parameters, so you must handle the offset separately. Try this: t0 = 0.5; % b ...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
How to use fitdist or gevfit and force the GEV distribution to a specific type (Type I)
I think you want the extreme value type I or Gumbel distribution, which MATLAB seems to call the "ExtremeValue" distribution. S...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How should I organise data for unbalanced two factor anova analysis (anovan)
To start with, you have to make a table with 25 lines, one for each member of each group, and 4 variables for intensity plus one...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
How to draw multiple random numbers from kernel estimated densities at once?
Can you reorganize your code so that you generate many random numbers at once from each density, store them in vectors, and then...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How do I fit gaussian function to data whose only information I have is the minimum, maximum and number of data points?
Mostly I agree with Alan, but I'd say that your guess for the number of standard deviations should not be a constant of 6 but sh...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Within Subjects Repeated Measures ANOVA - fitting a model
The first data table definitely isn't in the format that fitrm expects. Each row of the table should be a single subject from o...

mehr als 5 Jahre vor | 0

Beantwortet
passing a variable name to a function
You can use 'strings in parentheses' to address object and structure fields, so I think you can simply replace ev...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to bootstrap estimated Gamma parameters from sample 95% confidence
Generate 1000 (say) bootstrap samples from X. For each sample, compute the parameter estimates, so in the end you have 1000 est...

mehr als 5 Jahre vor | 0

Beantwortet
Convolution? Kernal density? Resample? Help!
As I understand it, you could approximate your situation (to any desired degree of accuracy) using a table with 3 columns: X Y...

mehr als 5 Jahre vor | 0

Beantwortet
How to import workspace in a function
I don't really understand what you are trying to do, but maybe an answer to this question will help: % If I convert the functio...

mehr als 5 Jahre vor | 0

Beantwortet
Calculating constant hazards in exponential survival distributions
The exponential distribution is a one-parameter distribution, so all you can do is estimate that parameter. Once you have that ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to generate the convolution density and integrate it on [a,b] fastly and precisely?
If your random variables X and Y are independent, Cupid might be helpful. It defines a general convolution RV for any continuous...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How reliable is fitdist with regard to the gamma-distribution?
If your overall goal is to check on the accuracy of fitdist, then I think your method is flawed because the data you construct (...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Someone please help me, I have probability mass function as follwing, How can generate 100 random values of j from this probability mass function?
If you would like to generate 100 random j values, use the function KSSV gave you to generate the f values for the probability m...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How reliable is fitdist with regard to the gamma-distribution?
I think fitdist is doing the best it can, but you gave it a non-gamma sample to fit because you truncated the X range at 20. Not...

mehr als 5 Jahre vor | 1

Beantwortet
How to write function to generate gaussian distribution of normal numbers with specified mean, variance and number of values?
you must return something from your function: function x = distribution(va, mu, ul, ll, nvals)

mehr als 5 Jahre vor | 0

| akzeptiert

Mehr laden