回答済み
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...

5年弱 前 | 0

| 採用済み

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

5年弱 前 | 1

回答済み
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)

5年弱 前 | 0

| 採用済み

回答済み
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 ...

5年弱 前 | 0

| 採用済み

回答済み
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

5年弱 前 | 0

回答済み
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 ...

5年弱 前 | 0

| 採用済み

回答済み
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);

5年弱 前 | 0

| 採用済み

回答済み
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...

5年弱 前 | 0

回答済み
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...

5年弱 前 | 0

| 採用済み

回答済み
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...

5年弱 前 | 1

回答済み
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...

5年弱 前 | 0

回答済み
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...

5年弱 前 | 0

回答済み
Weird fitting result from using 'ksdensity'
Try histogram(x,'Normalization','pdf')

5年弱 前 | 1

| 採用済み

回答済み
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...

約5年 前 | 0

| 採用済み

回答済み
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) % ...

約5年 前 | 0

質問


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...

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

1

回答

回答済み
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...

約5年 前 | 1

| 採用済み

回答済み
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 ...

約5年 前 | 1

回答済み
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, ...

約5年 前 | 0

回答済み
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 ...

約5年 前 | 1

| 採用済み

回答済み
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...

約5年 前 | 0

回答済み
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) ...

約5年 前 | 0

| 採用済み

回答済み
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...

約5年 前 | 1

回答済み
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...

約5年 前 | 0

回答済み
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...

約5年 前 | 1

| 採用済み

回答済み
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...

約5年 前 | 1

回答済み
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); ...

約5年 前 | 0

回答済み
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...

約5年 前 | 0

回答済み
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 ...

約5年 前 | 0

回答済み
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...

約5年 前 | 0

さらに読み込む