Réponse apportée
Datetime with variable format
Unfortunatelly you cannot specify multiple InputFormats simultaneously. Common to Name-Value pairs is that the last instance of ...

presque 10 ans il y a | 1

Réponse apportée
MATLAB function to perform an unbalanced anova
You can do this with <http://www.mathworks.com/help/stats/anovan.html anovan>.

presque 10 ans il y a | 1

A soumis


Currency Symbols
Retrieve currency symbols from a currency char array.

presque 10 ans il y a | 1 téléchargement |

0.0 / 5

Réponse apportée
How do I get the course Matlab Fundamentals?
Navigate to the Website, <https://www.mathworks.com/training-schedule/matlab-fundamentals> and you should see a Shopping Cart sy...

presque 10 ans il y a | 0

Réponse apportée
Question about the legend command
The problem is not with the legend. You can note that if you keep adding new legend entries, you will get more markers shown: ...

presque 10 ans il y a | 1

Réponse apportée
My loop has an infinite recursion, and I'm not sure how to fix it?
You always set _y_ to be the initial guess and call _divide_and_average_ with _y_ which is the initial guess. while boundar...

presque 10 ans il y a | 0

Réponse apportée
How do I prevent a stepwise multiple linear regression to include interaction terms?
You are on the right track, it is the Upper input you are looking for: mdl1 = stepwiselm(X,y,'constant','Upper','linear'); ...

presque 10 ans il y a | 5

| A accepté

Réponse apportée
Specify a color from a relative range of data
Since your colors are really just numeric values, we can perform an interpolation on those numbers using _interp1_: b = [0 ...

presque 10 ans il y a | 4

| A accepté

Réponse apportée
add each element of one vector to each element of another vector
The essential idea here is that you want a 6x6 output containing the sums of the rows and columns (which will represent die1 and...

presque 10 ans il y a | 2

Réponse apportée
How can I add two Gaussian Mixture models?
The quick answer is you cannot. The fitting function needs to estimate the means vectors and covariance matrices for each of the...

presque 10 ans il y a | 0

Réponse apportée
How to Create array with repeating values of another array
x = [1 2 3 4 5]; y = repelem(x,2) y = 1 1 2 2 3 3 4 4 5 5

environ 10 ans il y a | 3

Réponse apportée
Fix function evaluations in ga
This is controlled in the _Generations_ property of the Genetic Algorithm options. Obtain the default options: >> options ...

environ 10 ans il y a | 0

Réponse apportée
Create a matrix (24,72) using 'for' loop.
You could do this with a loop: A = ones(24,72); for k = 1:72 if rem(k,3) == 0 A(:,k) = 0; end ...

environ 10 ans il y a | 1

Réponse apportée
Conversion of cell containing numbers into a numerical double?
A = {3;4;5}; % Cell array B = cell2mat(A) % convert to a double. B = 3 4 5

environ 10 ans il y a | 1

Réponse apportée
how to replace the following code, to get the matrix
You really just need to make a sparse diagonal matrix. This can very easily be done with <http://www.mathworks.com/help/releases...

environ 10 ans il y a | 0

| A accepté

Réponse apportée
How to detect if a figure exist?
In 2014b and later you can query whether the Graphics Root objects has any children: g = groot; isempty(g.Children) % Tr...

environ 10 ans il y a | 4

| A accepté

Réponse apportée
Combining to two Cells
One of the issues you will face here is that what is stored in the cell array _p_ is numeric data and concatenation of numeric d...

environ 10 ans il y a | 2

| A accepté

Réponse apportée
Getting scores in Naive Bayes and Support Vector Machine
The scores are only the result from using the predict method of the aforementioned classes. They are the second output referred ...

environ 10 ans il y a | 0

| A accepté

Réponse apportée
Can I use the kstest function to check if the data have a CDF defined by myself?
Yes, if you have a function that calculates the CDF of the distribution you can calculate the CDF at your sample values and pass...

environ 10 ans il y a | 0

| A accepté

Réponse apportée
Nested / parfor loop issue
a) You must be trying to use parfor on the outer i loop, but this does not allow you to make an assignment to the jth page of Ja...

environ 10 ans il y a | 0

| A accepté

Réponse apportée
Combining two optimization functions
Your problem is simply that fminsearch is passing only 1 input to the objective function (this is common among optimization rout...

environ 10 ans il y a | 0

Réponse apportée
Test significance parameters mvnrmle regression
There is really no reason to be using mvnrmle to fit this model. If you are using 2013b of later I would suggest the use of fitl...

environ 10 ans il y a | 0

Réponse apportée
How shall I confirm the significance of week days' Up-Downs for some stock?
Typically one would perform an Analysis of Variance ( <http://www.mathworks.com/help/stats/anova1.html anova1>) on the actual da...

environ 10 ans il y a | 0

| A accepté

Réponse apportée
getting vertices of patch object after rotation .
p = patch([0 0 0.1 0.1],[0 0.2 0.2 0],'b') p.Vertices or p.XData p.YData Although I'm not sure how you ...

environ 10 ans il y a | 0

| A accepté

Réponse apportée
how do i apply maximum likelihood estimation for a gaussian distribution?
Maximum Likelihood estimates for a normal distribution would be: mu = mean(K); sigma = std(K,1); % 1 for population stan...

environ 10 ans il y a | 1

Réponse apportée
How to predict output values of new data in stepwise regression?
rng('default') % Reproducibility n = 200; % 200 samples % Generate some data which is quadratic x = 4*(rand(n,1)-0.5)...

environ 10 ans il y a | 1

| A accepté

Réponse apportée
Maximize loglikelihood function GARCH(1,1)
Also, the Econometrics Toolbox will perform a GARCH fitting for you: mdl = garch(1,1); EstMdl = estimate(mdl,Return); ...

environ 10 ans il y a | 0

Réponse apportée
Confluent Hypergeometric Function of the First Kind
The _kummerU_ function is the Confluent Hypergeometric Function of the Second Kind. _hypergeom(a,b,z)_ is the Confluent Hyper...

environ 10 ans il y a | 4

Réponse apportée
query about validation set
What is called the validation set in Neural Nets is not quite the same as it is for other machine learning algorithms. Typicall...

environ 10 ans il y a | 1

Réponse apportée
How do I plot functions involving integration?
We can not anticipate ahead of time what the size of v will be in the integral function, in fact I think this changes to approxi...

environ 10 ans il y a | 0

| A accepté

Charger plus