photo

Richard Willey

MathWorks

Actif depuis 2011

Followers: 0   Following: 0

Message

Statistiques

All
  • Knowledgeable Level 3
  • Personal Best Downloads Level 3
  • 5-Star Galaxy Level 4
  • First Submission
  • 12 Month Streak
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Crossvalidation of Classification Trees?
I recommend that you look at the following example from the file exchange http://www.mathworks.com/matlabcentral/fileexchange...

environ 12 ans il y a | 0

Réponse apportée
linear regression
Alternatively, if you have the 12a version of Statistics Tbx X = [1,2,3,4,5,6,7,8,9]; Y = [4 5 6 9 8 7 4 1 2]; my...

environ 12 ans il y a | 1

Réponse apportée
How to apply Random walks ?
MATLAB includes a wide variety of functions that can be used to simulate a random walk. Depending on what precisely you want to...

environ 12 ans il y a | 1

Réponse apportée
What is a reasonable lower time limit for regstats?
MATLAB and Statistics Toolbox provide a variety of ways to perform a regression. For example, if I am performing a simple linea...

environ 12 ans il y a | 1

Réponse apportée
Parametric bootstraping in curve fitting
In general when I hear the expression parametric bootstrap I think "parametric residual bootstrap" I'm attaching some simple ...

environ 12 ans il y a | 1

| A accepté

Réponse apportée
How do I Regression Fit a SinWave to a dataset?
Here's some simple code that illustrates how to perform nonlinear regression using the 12a release of Statistics Toolbox. Not...

environ 12 ans il y a | 1

Réponse apportée
Homework help.
Couple quick questions / comments 1. are you sure you typed in the model correctly? This looks very close to a Gompertz fun...

environ 12 ans il y a | 0

Réponse apportée
Curve fitting f(x,y) result
I'm attaching code that shows a couple different ways to solve your problem. I prefer the second option. The R^2 is slightly...

plus de 12 ans il y a | 1

Réponse apportée
Curve fitting f(x,y) result
Hi ZazOufUMl A "Poly31" model is different than the one that I suggested. (Poly31 will contain a number of cross terms). ...

plus de 12 ans il y a | 0

Réponse apportée
Curve fitting f(x,y) result
Hi there The "Poly54" fit type is specifying a 5th order polynomial in one direction and a 4th order polynomial in the other....

plus de 12 ans il y a | 0

Réponse apportée
Matlab - How to Generate Random Numbers from a Specific Probability Density
If Pv and Pa can both be described as functions of a, you might be able to use a univariate generator to generate plausible valu...

plus de 12 ans il y a | 0

Réponse apportée
Multicolinearity/Regression/PCA and choice of optimal model (2nd try)
I'm attaching some code that might provide helpful I also have a two part blog posting on this same subject that provides a b...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
The problem of using rng to generate random numbers.
From the sounds of things, the simplest thing to do would be to generate all of your random numbers OUTSIDE your loop. Start ...

plus de 12 ans il y a | 0

Réponse apportée
The problem of using rng to generate random numbers.
It's hard to make a specific recommendation without known more about the use case. What (specifically) are you trying to acco...

plus de 12 ans il y a | 0

Réponse apportée
classifier
I did a webinar a couple years titled: "Computational Statistics: An Introduction to Classification with MATLAB". You can ...

plus de 12 ans il y a | 0

Réponse apportée
Surface Fitting Tool Coefficient Structure
Local regression (aka LOWESS/LOESS) and interpolation don't lend themselves to parametric representations. There really isn't a...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Curve smoothing using Matlab
I have a function called FitIt on the file exchange that might prove useful. FitIt combines Local regression (to smooth yo...

plus de 12 ans il y a | 0

Réponse apportée
Get Y values from Curve Fitting Tool
For simplicity, this code is using a simple linear model. However, the same syntax with work for your nonlinear regression. ...

plus de 12 ans il y a | 8

| A accepté

Réponse apportée
Least squares linear regression when squares have to do with elasticity?
Here's a simple example using the new regression functions in the 12a release. All you need to do is pass the appropriate weigh...

plus de 12 ans il y a | 1

Réponse apportée
Multi-parametric fit with matlab
Hi Miguel fitensemble is able to handle multiple independent variables. You should be able to use this with the data set tha...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Multi-parametric fit with matlab
Hi Miguel From the sounds of things, your central problem is that you're unable to specify an equation that describes the rel...

plus de 12 ans il y a | 0

Réponse apportée
Classifiers. How can i draw 3-D plot ?
I have a webinar entitled An Introduction to Classification with MATLAB. The code is available for download from the file exc...

plus de 12 ans il y a | 0

Réponse apportée
How to merge two similar functions into a same function? any mathematical modeling method or tool box?
Hi Qian Implicitly, you seem to be suggesting that there is a single model that describes both of these sets of data. Rather...

plus de 12 ans il y a | 0

Réponse apportée
Classifiers. How can i draw 3-D plot ?
The SVM implementation in Bioinformatics Toolbox is limited to binary classification. The Naive Bayes classifier in Statistic...

plus de 12 ans il y a | 1

Réponse apportée
How to obtain Std of Coefficients from Curve Fitting
Hi George Conveniently, 12a also has a function call NonLinearModel %% Generate some data X = 2* pi*rand(100,1); ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to obtain Std of Coefficients from Curve Fitting
The 12a release of Statistics Toolbox has some very nice new capabilities for regression analysis. %% Generate some data ...

plus de 12 ans il y a | 1

Réponse apportée
how do I determine the probability distribution of data?
Sorry if this sounds like a silly question: Is there an absolute requirement that you describe your data using a parametric d...

plus de 12 ans il y a | 0

Réponse apportée
How to get regression statistics for several run with different data sets?
Hey there The following code assumes that you have the 12a release of Statistics Toolbox. (In other words, I am using the ne...

plus de 12 ans il y a | 0

Réponse apportée
Need help in getting a polynomial to go through 0,0
I'm attaching code that illustrates how to solve the problem using either Statistics Toolbox or base MATLAB. The Statistic ...

plus de 12 ans il y a | 0

Réponse apportée
Matlab 2012a
Statistics Toolbox includes a lot of impressive new functionality for regression analysis. I'm attach code for a blog post th...

plus de 12 ans il y a | 0

Charger plus