Risposto
R code to matlab, or simply generating a zero mean gaussian and finding the covariance matrix
x=normrnd(0,1,5000,1); v=normrnd(0,0.3,5000,1); y=0.5*x+v; cov=mean(x.*y)-(mean(x)*mean(y)); cov s=cov*(sqrt(var(x)))*(sqrt...

oltre 5 anni fa | 0

| accettato

Risposto
Generating a histogram from lognormally distributed data
What about something like this: mu = 0.015; % mean particle size sg = 1.6; % standar...

oltre 5 anni fa | 1

Risposto
How to integral a pdf of a continuous random variable to calculate its entropy
Try this: pd = makedist('beta','a',50,'b',40); fun = @(x) pdf(pd,x) .* log( pdf(pd,x) ); H = -integral(fun,0,1)

oltre 5 anni fa | 0

| accettato

Risposto
Fit data to beta distribution
There is information here about how to fit a univariate distribution from an empirical CDFs with MATLAB. Unfortunately, it is a ...

oltre 5 anni fa | 0

| accettato

Risposto
how to create a pdf function of two variables that are in different uniform distribution
If they are independent then the joint pdf is the product of the marginal pdfs, so in this case pdf(x,y) = 0.01

oltre 5 anni fa | 0

Risposto
Calculate Exponetial Moving Covariance
Not really a hand, but maybe some hints...Let's say you have variables x and y, and you want the exponentially weighted rolling ...

oltre 5 anni fa | 0

| accettato

Risposto
Select sample from an array
Maybe this: ints = [2:7:259 3:7:259 4:7:259 5:7:259]; srtints = sort(ints); X1 = x(:,srtints);

oltre 5 anni fa | 0

| accettato

Risposto
Kruskal-Wallis test with very small p-values
p values can be anywhere between 0 and 1, depending on your data. a tiny p value like that is telling you that you would very r...

oltre 5 anni fa | 0

Risposto
Fitting a multivariate Gaussian distribution on a histogram
There isn't really a universal answer to "which distribution fits best", because there are an infinite number of different distr...

oltre 5 anni fa | 0

| accettato

Risposto
How to index through variable list in a table after doing calculation with each variable
myVars = {'Var1name' 'Var2name' 'Var3name'}; % list the names of the variables you want for iVar=1:numel(myVars) thisColu...

oltre 5 anni fa | 1

Risposto
How to obtain the standard error for each of the fitted parameters
The notion of a standard error assumes some kind of random sampling. For example, the standard error of your 'b' parameter refl...

oltre 5 anni fa | 0

Risposto
sqlite foreign key constraint not enforced
In case anyone else is interested, here is the answer from MATLAB technical support: This [is] a bug in executing PRAGMA querie...

oltre 5 anni fa | 0

Risposto
Weird fitting result from using 'ksdensity'
Try histogram(x,'Normalization','pdf')

oltre 5 anni fa | 1

| accettato

Risposto
How to plot a spatial correlation with a p-value threshold?
After you get X (bottom of your first code segment): rCrit = 0.312; % Based on N=40 and alpha = 0.05, 2-tailed, from a table of...

oltre 5 anni fa | 0

| accettato

Risposto
double truncated data sample
This is pretty ugly, but I think will do what you asked for: function [x]=generate_sample(n,eta,beta,theta,t1,t2) % ...

oltre 5 anni fa | 0

Domanda


sqlite foreign key constraint not enforced
My question is how to get MATLAB's sqlite databases to enforce foreign key constraints. Here is a minimal working example illus...

oltre 5 anni fa | 1 risposta | 0

1

risposta

Risposto
How to use least square fit in MATLAB to find coefficients of my polynomial?
% It sounds like you have data arrays like these: nPoints = 100; H = rand(nPoints,1); C = rand(nPoints,5); % If so, comput...

oltre 5 anni fa | 1

| accettato

Risposto
How to remove effect of "in" predictors on "out" predictors in stepwiseregression?
One way to think of it is that the "out" predictors will only improve the fit of the regression model if they bring in some new ...

oltre 5 anni fa | 1

Risposto
How to fit data in exponential fit (R = exp(-q*D)) and find coefficient "q" using Maximum Likelihood Estimate (MLE)?
As I read this question, it is about fitting a model rather than a distribution, so I don't think mle is appropriate. Instead, ...

oltre 5 anni fa | 0

Risposto
Multivariate analysis of variance in Matlab
You need to arrange your data in a table with one row per individual group member. For example, your first group seems to have ...

oltre 5 anni fa | 1

| accettato

Risposto
Selecting a "random" element from an array with each element having it's own weighting
% Wts is your vector of weights. Wts = Wts / sum(Wts); % make sure they sum to 1 cumPrs = cumsum(Wts); % cumPr is the cumula...

oltre 5 anni fa | 0

Risposto
Help fitting data to an implicit equation
I would suggest using fminsearch. The error function to be minimized would be something like: function thiserr = err(x,y,t) ...

oltre 5 anni fa | 0

| accettato

Risposto
Chi-squared for multiple groups
The crosstab function will do this--it is not limited to 2x2 tables. Example: % Make up example data for 200 participants, codi...

oltre 5 anni fa | 1

Risposto
using mle in matlab
One problem is that mle's search function (fminsearch) may try negative parameter values, in which case your pdf function return...

oltre 5 anni fa | 0

Risposto
ttest2 with a group describing independent values (statistics)
No, it is not possible to use ttest2 as you suggest. Your design has 2 factors: gender and time (day/night) with repeated measu...

oltre 5 anni fa | 1

| accettato

Risposto
Generation of Conditional Random Variables
It sounds like the only "free" aspect of your new samples is the new total (say, 241 instead of 240). Once you have that new to...

oltre 5 anni fa | 1

Risposto
Calculate Nakagami m parameter using the mle function
I think the minimum change you need is fast_fading=fast_fading(filtersize:end); fast_fading = fast_fading - min(fast_fading); ...

oltre 5 anni fa | 0

Risposto
Mixed anova design function (unbalanced design)
If the goal of the analysis is to see if the two groups differ significantly in sleep pre-expt, then actually the simplest appro...

oltre 5 anni fa | 0

Risposto
model parameter estimation from RMSE between modeled outputs and observations
Something like this. If it is too slow, note that you can use 'optimset' to pass fminsearch options that make it finish faster ...

oltre 5 anni fa | 0

Risposto
model parameter estimation from RMSE between modeled outputs and observations
I assume the model is too complex for regression, etc. In that case, you might be able to do this with fminsearch, if there are...

oltre 5 anni fa | 0

Carica altro