回答済み
How to find Sigma Matrix for Bivariate Distribution Given Data
You can't really use normfit to estimate sigma in the manner you are doing it, especially because x1 & x2 have such different nu...

約2年 前 | 0

| 採用済み

回答済み
fprintf's at beginning and end of a function called witihin parfor loop
Thanks Walter, that works perfectly. For anyone else interested, here's the revised version of the original code that works as ...

約2年 前 | 1

質問


fprintf's at beginning and end of a function called witihin parfor loop
I am trying to write logging-type information to the command window from inside a function that is called within a parfor loop. ...

約2年 前 | 2 件の回答 | 0

2

回答

回答済み
How do I loop a command for different variable names?
Another alternative is to make a function that does all of the necessary operations on each vector, and then call that function ...

約2年 前 | 0

回答済み
How to add random Noise between 2% in the dataset
Do you mean that you want to multiply each value in the dataset by a random number between 1.005 and 1.02, with all random numbe...

約2年 前 | 0

回答済み
Control for Confounding Variables in a Linear Regression Model
Suppose you have a variable X that you would like to predict from a set of predictors P and you want to control for some other v...

約2年 前 | 0

| 採用済み

回答済み
how does fitglm treat categorical variables?
I don't that is correct. WIth numerical values in the table, I think you have to mark the variables as categorical with somethi...

約2年 前 | 0

| 採用済み

回答済み
how to plot shorter dataset using 'hold on'
Is this what you need? desired_range = 1:200; % here, select the array positions you want to plot plot(T5half(desired_range),...

約2年 前 | 0

| 採用済み

回答済み
How to generate a vector of numbers picked from two groups with the condition that there cannot be more than 2 consecutive numbers from the same group?
If I understand what you are asking, this should be close to what you want: vecLength = 20; % how many numbers you want to gen...

約2年 前 | 0

回答済み
How to fit multiple distribution on a histogram without normalizing the histogram?
Probably simplest just to plot everything and then use ylim to reset the Y axis limits at the end to whatever you want, somethin...

約2年 前 | 0

| 採用済み

質問


How can I make more efficient use of parallel workers?
My code performs 30 iterations of a task via parfor, with 6 workers in the parallel pool. Each iteration writes files when it s...

約2年 前 | 1 件の回答 | 0

1

回答

回答済み
Given a null distribution, how can I calculate a p-value for my test statistic?
The one-tailed p value is just the tail probability of your original unshuffled difference relative to the null distribution tha...

約2年 前 | 0

回答済み
How to turn a function handle with 3 inputs (1 variable and 2 parameters) and then assign the inputs parameters and get a function handle with one input? ?
Not sure I understand the situation, but this sounds to me like a case where an OO approach could be very helpful. Consider: cl...

2年以上 前 | 0

回答済み
Repeated measures ANOVA Matlab (Statistic)
% Note the transpose operator: single-column vectors are more convenient. A = [10 11 13 16 15 18 17 16 11 12]'; B = [20 22 21 ...

2年以上 前 | 0

| 採用済み

回答済み
How to fit an uniform distribution to a histogram?
histogram(data, numBars); avgHeight = numel(data)/numBars; hold on; plot([min(data), max(data)],[avgHeight, avgHeight])

2年以上 前 | 1

回答済み
Spearman correlation fails in ranking strings
The first two inputs to the corr command have to be the numerical values that are to be correlated, so you will want something l...

2年以上 前 | 1

| 採用済み

回答済み
I want to compute mean median and mode for the distribution from its c.d.f.
The median is the value at p=0.50, which you already seem to have in your table. You can't really compute the mean and mode fr...

2年以上 前 | 0

回答済み
How to calculate StdErr for intercepts and slopes in a multivariate ANCOVA (function ANOVAN() with continuous independent variable)?
If you set up dummy variables to code your categorical independent variables, you can then do analysis of covariance with fitlm....

2年以上 前 | 2

| 採用済み

回答済み
Is it appropriate to use ranksum to compare statistical means for time series data?
The ranksum test ignores the sequential order of scores, so for example ranksum(x,y) will give you the same answer no matter how...

2年以上 前 | 0

回答済み
pca with more than one grouping variable
gscatter will accept multiple grouping variables, in your case organism & dead/alive. There is an example in the gscatter docu...

2年以上 前 | 0

| 採用済み

回答済み
Distribute a sum using binomial distribution
If I understand correctly, it is fine to use binornd with n = row total. It sounds like that is what was done in the paper. j...

2年以上 前 | 0

回答済み
Why is fitlm affected by variable scale?
Your understanding is correct for linear regression but your model is nonlinear because of the interaction terms. Consider: zX ...

2年以上 前 | 0

回答済み
understanding Linear regression model equation after simplifying.
I think the notation y~ 1+ x1*x2 is shorthand for y~ 1*b0+ b1*x1 + b2*x2 + b3*x1*x2. The four b values are the four estimates...

2年以上 前 | 0

| 採用済み

回答済み
Is there a way to normalizing a probability density function / keep the density values between 0 and 1?
Dividing by the max density value would have the unfortunate ramification that the resulting function would no longer be a densi...

2年以上 前 | 0

| 採用済み

回答済み
plot of log likelihood values
I think this might be what you are after: x = [2 4 3 1 6 2 2.5 7 10]; % data ShapeCandidates = 1:10; Scale = 6; loglik...

2年以上 前 | 0

回答済み
How can I see specific likelihood values with MLE (or possibly another function?)
Once you have the parameter estimates (e.g., from mle) you can compute the likelihood value by calling your custom density funct...

2年以上 前 | 0

回答済み
Facing an error while using 'anovan' function
anovan needs the original data (y1 and y2) to compute an error term, but you are only giving it the averages (ybar). This is why...

2年以上 前 | 0

| 採用済み

回答済み
Generating random variable from inverse gaussian dist.
Do you really need to write the random generator yourself? This one is already available: >> pd = makedist('inversegaussian') ...

2年以上 前 | 0

回答済み
How do I get MATLAB to display the d' when my hit rate = 1 using the norminv function?
No, d' cannot be computed when an observed hit_rate is 1 or fa_rate is zero. One of the most common work-arounds for this probl...

2年以上 前 | 0

回答済み
How to delete some of anonymous variables randomly?
One way to approach the problem is to write a function f(x) where x is a vector with 47 positions. When you call f, put numeric...

2年以上 前 | 0

| 採用済み

さらに読み込む