Risposto
Linear model fit error
Use the transpose operator on x1, x2, x3 and y so that these are column variables, like this for x1: x1 = [7 8 7 8 7 8 7 8 7 8 ...

oltre 5 anni fa | 0

Risposto
Randi Error- Array exceeds max array size preference
This looks wrong: OOK=randi(1,sig_length); The first parameter (here, 1) is the maximum random integer (the minimum is 1). Si...

oltre 5 anni fa | 0

| accettato

Risposto
repeated measure anova two options
Not sure but I think you need T = table([1 2]','VariableNames',{'Time'}); T.Time = categorical(T.Time); % add this line Mayb...

oltre 5 anni fa | 0

Risposto
What kind of join will work to merge these two tables
Try T3 = join(T1,T2,'Keys','City')

oltre 5 anni fa | 0

| accettato

Risposto
derive new variable with random float values using for loop
Despite your comments, I guess you want 0-1 for the second option, not 0-2. I guess you want all numbers in the range to be equ...

oltre 5 anni fa | 0

| accettato

Risposto
Plot best-fit Spearman rank correlation curve
Tricky question, because the whole point of the Spearman correlation is that the x/y relationship might be nonlinear. Maybe use...

oltre 5 anni fa | 0

Risposto
fitting a Gaussian curve convoluted with exponential decay
It sounds like you want what is often called the "ex-Gaussian" distribution. Its density function is on Wikipedia. Cupid will ...

oltre 5 anni fa | 0

| accettato

Risposto
get discrete pdf/pmf from a kernel distribution pdf on an interval
myFitTrunc = truncate(myFit1,4,12) % 4, 12 are example lower,upper truncation bounds Y = random(myFitTrunc,500,1) histogram(Y...

oltre 5 anni fa | 0

| accettato

Risposto
Optimising Monte Carlo simulation
Some suggestions--hopefully not a waste of your time: Use the profiler to find out where time is spent, so you can focus your s...

oltre 5 anni fa | 1

Risposto
RMSE plot of Monte Carlo simulation
RMSE is not supposed to decrease with the number of iterations, but it should stabilize. Your plot oscillates because each poin...

oltre 5 anni fa | 2

| accettato

Risposto
Outliers in ANOVA and multcompare
Yes, outliers are included. (Scores are considered outliers only for the purposes of the boxplots.) The way you can tell is tha...

oltre 5 anni fa | 1

Risposto
Average of Column Values with Condition
if your data are in a table, maybe you can use grpstats something like this: tbl.IntDepth = trunc(tbl.depth); % assuming depth...

oltre 5 anni fa | 0

Risposto
2-way-anova with balance over subjects
Look here for an explanation of how to do a repeated measures ANOVA with the same 2x2 within-Ss structure.

oltre 5 anni fa | 0

| accettato

Risposto
How to choose a sample of these input permutations?
Here's one possibility: Start by making a histogram of the "Difference in VAF" (DVAF) scores. Divide this histogram into k equ...

oltre 5 anni fa | 0

| accettato

Risposto
Defining class methods in the "deeper levels" of a class
A toy example might be needed to make it clearer what you are after, but I guess you want a class A which has as two of its prop...

oltre 5 anni fa | 0

Risposto
Kahneman's Taxi problem
Generate a cab of one color or the other with the appropriate probabilities. Get the color ID response from the witness with th...

oltre 5 anni fa | 0

| accettato

Risposto
Generate a random matrix with 4 specifik values
maybe this? j = 2.5; % insert whatever value of j you want to use vals = [1,-1, j, -j]; pos = randi(numel(vals),15,10^5); r...

oltre 5 anni fa | 0

Risposto
Error when running a repeated measures ANOVA
I'm pretty sure fitrm expects all of the data from a single patient to be on one row of the input data table (e.g., words)--at l...

oltre 5 anni fa | 0

| accettato

Risposto
Error when calling a jupyter notebook file from matlab
Just guessing here, but given that it is a file not found error, maybe you need to specify the path to the input file, something...

oltre 5 anni fa | 0

Risposto
Several questions regarding distributions
I don't know that there are definitive answers to any of your questions, but here are some thoughts: > most of these distributi...

oltre 5 anni fa | 1

Risposto
Multiple functions inside one .m file
Try the method involving static classes, as explained here by per isakson

quasi 6 anni fa | 0

| accettato

Risposto
Removing highest and lowest 5% of data as outliers using prctile
% Data values are in X; X2 holds remaining values after outliers removed Y = prctile(X,[5,95]); X2 = X(X>Y(1) & X<Y(2)); % ma...

quasi 6 anni fa | 0

| accettato

Risposto
Compare Fit of two linear models
A quick and dirty solution is to form a new variable S=IV1+IV2; and then compare the fit of the model 'DV~S' to the model 'DV~...

quasi 6 anni fa | 0

| accettato

Risposto
Alternative for two way anova
One option is to ignore the problem and do ANOVA despite the non-normality. ANOVA is pretty robust with respect to normality vi...

quasi 6 anni fa | 0

| accettato

Risposto
How can I fit a flexible distribution to a set of percentiles?
A normal distribution fits very well: see attached for a figure and the matlab code to generate it. There is no obvious skew (5...

quasi 6 anni fa | 0

| accettato

Risposto
Plotting a line representing Spearman's correlation on a scatterplot
I'm not sure a mismatch between slope and correlation is necessarily a problem. Note that the slope doesn't equal the correlati...

quasi 6 anni fa | 0

Risposto
How to exclude data when fitting an exponential distribution
You can make use of the memory-less property of the exponential here--the mean remaining time is independent of how much time ha...

quasi 6 anni fa | 1

| accettato

Risposto
Can MATLAB Handle a Triple Nested Struct?
Haven't tried it, but it seems like this should work: for i = 1:length(Calendar) for j=1:12 Calendar(i).Month(j)....

quasi 6 anni fa | 1

Risposto
setting up a nested data structure
Your information architecture diagram doesn't look quite right. For example, your [Females] should be a structure that holds hei...

quasi 6 anni fa | 1

| accettato

Risposto
Distribution Fitting Tool - finding of best fitting distribution type
It depends on exactly what you mean by "best fitting curve". In general, there is certainly no guarantee that the best-fitting ...

quasi 6 anni fa | 0

| accettato

Carica altro