Answered
How do I calculate the signal to noise ratio of a signal without knowing the noise of the signal?
I'm not sure whether this fits your situation, but one way to estimate the noise is to subtract the average of the epochs from e...

meer dan 2 jaar ago | 1

| accepted

Answered
Poisson PMF using MATLAB
This might get you started... k = 0:17; pmf = poisspdf(k,4); figure; plot(k,pmf,'o-')

meer dan 2 jaar ago | 0

| accepted

Answered
May I ask how I can find 95% confidence interval of skew_FP() from these codes?
LBUB = prctile(skew_FP(),[2.5,97.5]);

meer dan 2 jaar ago | 0

| accepted

Answered
Using a specific number of digits
Maybe by "report k" you are referring to printing it, in which case this should work for k=1:100 fprintf('%03d\n',k) end

meer dan 2 jaar ago | 0

Answered
How to computing confidence bounds of the regression model using the bootstrap method
I'm assuming that your figure shows t on the horizontal axis and y on the vertical. The problem is that bootci is giving you co...

meer dan 2 jaar ago | 0

| accepted

Answered
How do I update an inherited property in both the SuperClass and SubClass simultaneously in real time?
The superclass/subclass relationship is a little different than you think. When you make SUP and SUB, these are completely diff...

meer dan 2 jaar ago | 0

| accepted

Answered
Anova analysis with blocking
You can do this with fitlm as long as you want to test for the effect(s) of interest within a standard linear RCBD model. The h...

meer dan 2 jaar ago | 0

| accepted

Answered
Question about "gamcdf" code
To get the 75th percentile value, you need to use gaminv() rather than gamcdf. Also, the shape parameter comes first and scale ...

meer dan 2 jaar ago | 0

| accepted

Answered
How to use num2str inside text with latex interpreter?
I think you need square brackets like this to assemble all the characters into a single string text(4,5,['$L_{',num2str(i),'}$'...

meer dan 2 jaar ago | 2

Answered
ttest2 doubt in the results between 2 different groups
The implication of the t-test result is that the difference (even though it looks big to you) could well have arisen by chance e...

meer dan 2 jaar ago | 0

| accepted

Answered
Alternative to Eval for small number of variables
Put your workspace variables in a struct and then use var_names to access the fields of that struct, something like this: wrkst...

meer dan 2 jaar ago | 0

Answered
if I set model as 'linear' in 'anovan', is 'anovan' equivalent to applying respectively 'anova1' to the factors?
no, those are not equivalent, as you should be able to verify by applying them both to the same dataset. With its default 'linea...

meer dan 2 jaar ago | 0

Answered
Plot a cumulative distribution with a symmetric logarithmic scale centred at 50%
Not sure if I really understand what you want but maybe something like this: z_app = norminv(cdf_app); % find the normal Z sco...

meer dan 2 jaar ago | 1

| accepted

Answered
Error when using: parmHat = wblfit(x)
The problem is that your x vector has some nan's in it, and wblfit can't handle those. Try y = x(~isnan(x)); parmHat = wblfit...

meer dan 2 jaar ago | 1

Answered
How do we modify the tails of norrmal/any kind of distribution by keeping other portion is same?
As Paul says, the details are important because there are infinitely many ways to do what you are asking. One way to think abou...

meer dan 2 jaar ago | 2

Answered
How to avoid duplicating code in the constructor and a reset method of a class with class inheritance.
This is presumably an issue only because you sometimes create objects of the type MySuperClass--not just descendant MyClass obje...

meer dan 2 jaar ago | 0

Answered
Estimate ksdensity values for large number of data points, e.g. 100000 values
It is a common mistake to think that PDF values should be less than 1. Actually, PDFs are defined in such a way that the area un...

meer dan 2 jaar ago | 1

| accepted

Answered
Generation of large data sets (10^4) for log Pearson type III distribution and finding its paramters
If the distribution you have in mind is the same one described here then this is a good problem for Cupid (see especially the fi...

meer dan 2 jaar ago | 0

| accepted

Answered
Fundamental proof of signal averaging noise reduction
Your code doesn't really measure noise reduction in the right way. Noise reduction refers to variability across many repeated m...

meer dan 2 jaar ago | 0

| accepted

Answered
How to compute the slop of bootstrap population with its confidence interval?
It sounds like this is what you are after, although I'm not sure why you want to do it: m = bootstrp(100,@mySlope,A); LowerCI ...

meer dan 2 jaar ago | 0

Answered
Conditional fixed effects for glme
I think this is the key sentence from the example page: "Specify the dummy variable encoding as 'effects', so the dummy variable...

meer dan 2 jaar ago | 0

Answered
Each PARFOR Worker Writes to the Same File
Maybe have each worker write to its own output file and then assemble those after? This answer shows how to get the id for each...

meer dan 2 jaar ago | 0

Answered
Fitting bimodal wind data using Weibull mixture in matlab
Your sample graph is not a probability distribution, Weibull or otherwise. For a probability distribution, the vertical axis al...

meer dan 2 jaar ago | 0

Question


immediate refresh function for cd?
When I run this code in a script: cd(my_folder_name) % what goes here? pause(15) the current folder window doesn't update un...

meer dan 2 jaar ago | 1 answer | 2

1

answer

Answered
Statistical distribution comparison for two datasets
You could use manova if you just wanted to compare the centroids of the multivariate distributions, but it sounds like you want ...

meer dan 2 jaar ago | 0

| accepted

Answered
How to robustly set class object properties in the class constructor when using name-value approach without handling them one-by-one?
One option might be something like this: % How to make... fnames = fieldnames(namedArgs); for ifield=1:length(fnames) s ...

meer dan 2 jaar ago | 1

| accepted

Answered
How can i use a "list of variablennames" to calculate something?
One convenient option if you really want to do something like this is to use a structure to hold all of the variables that you w...

meer dan 2 jaar ago | 1

Answered
how to delete outliers data for 15 person Separately?
I think I see the issue now. Maybe this is better: DATA1=[]; SUBJECT = []; for i = 1:15 data1 = load(strcat(strcat('park...

meer dan 2 jaar ago | 0

| accepted

Answered
How do I Plot a Regression Line (not simple regression) on gscatter?
Something like this should work, after your gscatter: lowX = 0; % set low & hi X to span the x-axis range that you want the l...

meer dan 2 jaar ago | 0

Answered
What is the orthodox precedure of evaluating/determining the type of a distribution? And How to fit it into a normal distribution with skewness and kurtosis?
Unfortunately, trial-and-error with fitting different distributions is the only way to find out what distribution provides the b...

meer dan 2 jaar ago | 0

Load more